Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix doc broken links #1023

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions doc/plugins/other.rst

This file was deleted.

4 changes: 1 addition & 3 deletions doc/testing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ scheme, or it doesn't suit the layout of your project, or you need reports in
a format different from the unittest standard, or you need to collect some
additional information about tests (like code coverage or profiling data), you
can write a plugin to make nose do what you want. See the section on
:doc:`plugins/writing` for more. There are also many
`third-party nose plugins <http://nose-plugins.jottit.com/>`_ available.
:doc:`plugins/writing` for more.

Details
-------
Expand All @@ -51,5 +50,4 @@ Details
finding_tests
testing_tools
plugins/builtin
plugins/other
setuptools_integration
8 changes: 3 additions & 5 deletions nose/plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,12 +173,10 @@ def finalize(self, result):
=============

See any builtin plugin or example plugin in the examples_ directory in
the nose source distribution. There is a list of third-party plugins
`on jottit`_.
the nose source distribution.

.. _examples/html_plugin/htmlplug.py: http://python-nose.googlecode.com/svn/trunk/examples/html_plugin/htmlplug.py
.. _examples: http://python-nose.googlecode.com/svn/trunk/examples
.. _on jottit: http://nose-plugins.jottit.com/
.. _examples/html_plugin/htmlplug.py: https://github.com/nose-devs/nose/blob/master/examples/html_plugin/htmlplug.py
.. _examples: https://github.com/nose-devs/nose/tree/master/examples

"""
from nose.plugins.base import Plugin
Expand Down