aboutsummaryrefslogtreecommitdiff
path: root/doc/source/intro.rst
diff options
context:
space:
mode:
authorHarmon <Harmon758@gmail.com>2020-02-17 14:13:12 -0600
committerHarmon <Harmon758@gmail.com>2020-02-17 14:13:12 -0600
commite9de612ebe54534789822eaa164354d9523f7bde (patch)
tree4021d83c6fedee269cb45b23d1cacfe761b78dc6 /doc/source/intro.rst
parent0059f432c4b9c564b5fa675e76ee4666be5a3ac8 (diff)
downloadGitPython-e9de612ebe54534789822eaa164354d9523f7bde.tar.gz
GitPython-e9de612ebe54534789822eaa164354d9523f7bde.zip
Remove and replace references to nose with unittest in documentation
Diffstat (limited to 'doc/source/intro.rst')
-rw-r--r--doc/source/intro.rst6
1 files changed, 2 insertions, 4 deletions
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 <https://github.com/nose-devs/nose>`_ unit tests::
+Finally verify the installation by running unit tests::
- $ nosetests
+ $ python -m unittest
Questions and Answers
=====================