File tree 3 files changed +4
-5
lines changed
3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ Then run:
87
87
tox
88
88
89
89
90
- For more fine-grained control, you can use ` nose ` .
90
+ For more fine-grained control, you can use ` unittest ` .
91
91
92
92
### Contributions
93
93
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Unreleased
6
6
==========
7
7
8
8
* Restricted GitDB (gitdb2) version requirement to < 4
9
+ * Removed old nose library from test requirements
9
10
10
11
3.0.8
11
12
=====
Original file line number Diff line number Diff line change @@ -18,11 +18,9 @@ Requirements
18
18
It should also work with older versions, but it may be that some operations
19
19
involving remotes will not work as expected.
20
20
* `GitDB `_ - a pure python git database implementation
21
- * `Python Nose `_ - used for running the tests
22
21
23
22
.. _Python : https://www.python.org
24
23
.. _Git : https://git-scm.com/
25
- .. _Python Nose : https://nose.readthedocs.io/en/latest/
26
24
.. _GitDB : https://pypi.python.org/pypi/gitdb
27
25
28
26
Installing GitPython
@@ -102,9 +100,9 @@ Initialize all submodules to obtain the required dependencies with::
102
100
$ cd git-python
103
101
$ git submodule update --init --recursive
104
102
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::
106
104
107
- $ nosetests
105
+ $ python -m unittest
108
106
109
107
Questions and Answers
110
108
=====================
You can’t perform that action at this time.
0 commit comments