From 4e97632a0171d708edf88ec714a566d9e8d82138 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sat, 19 Oct 2019 11:08:21 -0700 Subject: [PATCH] Remove doc reference to unmaitained Nose package The Nose package is no longer maintained. On their website, the issue the following notice: https://nose.readthedocs.io/en/latest/ > Note to Users: Nose has been in maintenance mode for the past several > years and will likely cease without a new person/team to take over > maintainership. New projects should consider using Nose2, py.test, or > just plain unittest/unittest2. Its GitHub repository has not received a commit since Mar 3, 2016 As a result, stop endorsing it as an alternative. --- Doc/library/unittest.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 8c9affe9db952c..9e66a2c1c220a2 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -56,8 +56,8 @@ test runner Kent Beck's original paper on testing frameworks using the pattern shared by :mod:`unittest`. - `Nose `_ and `pytest `_ - Third-party unittest frameworks with a lighter-weight syntax for writing + `pytest `_ + Third-party unittest framework with a lighter-weight syntax for writing tests. For example, ``assert func(10) == 42``. `The Python Testing Tools Taxonomy `_