From b9e05e71ac29f70a859447e6931d3214f06f4956 Mon Sep 17 00:00:00 2001 From: Sebastien Duthil Date: Tue, 1 Nov 2016 11:14:11 -0400 Subject: [PATCH 1/2] replace googlecode links with github --- nose/plugins/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nose/plugins/__init__.py b/nose/plugins/__init__.py index 08ee8f32..60f0f99c 100644 --- a/nose/plugins/__init__.py +++ b/nose/plugins/__init__.py @@ -176,8 +176,8 @@ def finalize(self, result): the nose source distribution. There is a list of third-party plugins `on jottit`_. -.. _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 +.. _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 .. _on jottit: http://nose-plugins.jottit.com/ """ From 0e803bfe7f346b44d15db1d43ee64779c0cca463 Mon Sep 17 00:00:00 2001 From: Sebastien Duthil Date: Tue, 1 Nov 2016 11:21:40 -0400 Subject: [PATCH 2/2] remove links to http://nose-plugins.jottit.com reason: this website seems down ("application error") --- doc/plugins/other.rst | 6 ------ doc/testing.rst | 4 +--- nose/plugins/__init__.py | 4 +--- 3 files changed, 2 insertions(+), 12 deletions(-) delete mode 100644 doc/plugins/other.rst diff --git a/doc/plugins/other.rst b/doc/plugins/other.rst deleted file mode 100644 index 47490c38..00000000 --- a/doc/plugins/other.rst +++ /dev/null @@ -1,6 +0,0 @@ -Third-party nose plugins ------------------------- - -Visit http://nose-plugins.jottit.com/ for a list of third-party nose plugins -compatible with nose 0.9 through 0.11. If you have released a plugin that you -don't see in the list, please add it! diff --git a/doc/testing.rst b/doc/testing.rst index 42bf6fea..f4c377d0 100644 --- a/doc/testing.rst +++ b/doc/testing.rst @@ -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 `_ available. +:doc:`plugins/writing` for more. Details ------- @@ -51,5 +50,4 @@ Details finding_tests testing_tools plugins/builtin - plugins/other setuptools_integration diff --git a/nose/plugins/__init__.py b/nose/plugins/__init__.py index 60f0f99c..054d7a14 100644 --- a/nose/plugins/__init__.py +++ b/nose/plugins/__init__.py @@ -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: https://github.com/nose-devs/nose/blob/master/examples/html_plugin/htmlplug.py .. _examples: https://github.com/nose-devs/nose/tree/master/examples -.. _on jottit: http://nose-plugins.jottit.com/ """ from nose.plugins.base import Plugin