Skip to content

Commit e9de612

Browse files
committed
Remove and replace references to nose with unittest in documentation
1 parent 0059f43 commit e9de612

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Then run:
8787
tox
8888

8989

90-
For more fine-grained control, you can use `nose`.
90+
For more fine-grained control, you can use `unittest`.
9191

9292
### Contributions
9393

doc/source/changes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Unreleased
66
==========
77

88
* Restricted GitDB (gitdb2) version requirement to < 4
9+
* Removed old nose library from test requirements
910

1011
3.0.8
1112
=====

doc/source/intro.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,9 @@ Requirements
1818
It should also work with older versions, but it may be that some operations
1919
involving remotes will not work as expected.
2020
* `GitDB`_ - a pure python git database implementation
21-
* `Python Nose`_ - used for running the tests
2221

2322
.. _Python: https://www.python.org
2423
.. _Git: https://git-scm.com/
25-
.. _Python Nose: https://nose.readthedocs.io/en/latest/
2624
.. _GitDB: https://pypi.python.org/pypi/gitdb
2725

2826
Installing GitPython
@@ -102,9 +100,9 @@ Initialize all submodules to obtain the required dependencies with::
102100
$ cd git-python
103101
$ git submodule update --init --recursive
104102

105-
Finally verify the installation by running the `nose powered <https://github.com/nose-devs/nose>`_ unit tests::
103+
Finally verify the installation by running unit tests::
106104

107-
$ nosetests
105+
$ python -m unittest
108106

109107
Questions and Answers
110108
=====================

0 commit comments

Comments
 (0)