From eaaddf59317808fcb20a8f025947cafcd5e21a4b Mon Sep 17 00:00:00 2001 From: Zac-HD Date: Mon, 27 Nov 2017 13:22:30 +1100 Subject: [PATCH] Nose is deprecated, remove suggestion https://nose.readthedocs.io now suggests using nose2, which https://github.com/nose-devs/nose2 in turn has ceased feature development due to the popularity of py.test. Closes #683 --- docs/writing/tests.rst | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/docs/writing/tests.rst b/docs/writing/tests.rst index ea86ee8..23e0f01 100644 --- a/docs/writing/tests.rst +++ b/docs/writing/tests.rst @@ -190,23 +190,6 @@ the unittest module! `py.test `_ -Nose ----- - -nose extends unittest to make testing easier. - - -.. code-block:: console - - $ pip install nose - -nose provides automatic test discovery to save you the hassle of manually -creating test suites. It also provides numerous plugins for features such as -xUnit-compatible test output, coverage reporting, and test selection. - - `nose `_ - - tox ---