From e9de612ebe54534789822eaa164354d9523f7bde Mon Sep 17 00:00:00 2001 From: Harmon Date: Mon, 17 Feb 2020 14:13:12 -0600 Subject: Remove and replace references to nose with unittest in documentation --- README.md | 2 +- doc/source/changes.rst | 1 + doc/source/intro.rst | 6 ++---- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 18f9db6b..21778db4 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ Then run: tox -For more fine-grained control, you can use `nose`. +For more fine-grained control, you can use `unittest`. ### Contributions diff --git a/doc/source/changes.rst b/doc/source/changes.rst index 46e6805d..539f9a3d 100644 --- a/doc/source/changes.rst +++ b/doc/source/changes.rst @@ -6,6 +6,7 @@ Unreleased ========== * Restricted GitDB (gitdb2) version requirement to < 4 +* Removed old nose library from test requirements 3.0.8 ===== diff --git a/doc/source/intro.rst b/doc/source/intro.rst index 9ae70468..4b18ccfc 100644 --- a/doc/source/intro.rst +++ b/doc/source/intro.rst @@ -18,11 +18,9 @@ Requirements It should also work with older versions, but it may be that some operations involving remotes will not work as expected. * `GitDB`_ - a pure python git database implementation -* `Python Nose`_ - used for running the tests .. _Python: https://www.python.org .. _Git: https://git-scm.com/ -.. _Python Nose: https://nose.readthedocs.io/en/latest/ .. _GitDB: https://pypi.python.org/pypi/gitdb Installing GitPython @@ -102,9 +100,9 @@ Initialize all submodules to obtain the required dependencies with:: $ cd git-python $ git submodule update --init --recursive -Finally verify the installation by running the `nose powered `_ unit tests:: +Finally verify the installation by running unit tests:: - $ nosetests + $ python -m unittest Questions and Answers ===================== -- cgit v1.2.3