File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
10113.0.8
1112=====
Original file line number Diff line number Diff 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
2826Installing 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
109107Questions and Answers
110108=====================
You can’t perform that action at this time.
0 commit comments