File tree 2 files changed +11
-7
lines changed
2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -99,10 +99,16 @@ You can check out the latest version of the source code with the command::
99
99
Testing
100
100
-------
101
101
102
- You can run a set of unit tests to make sure that everything is working
103
- correctly. After installation , run::
102
+ You can run the unit tests with ` pytest `_ to make sure that everything is
103
+ working correctly. Inside the source directory , run::
104
104
105
- python setup.py test
105
+ pytest -v
106
+
107
+ or to test the installed package::
108
+
109
+ pytest --pyargs control -v
110
+
111
+ .. _pytest : https://docs.pytest.org/
106
112
107
113
License
108
114
-------
Original file line number Diff line number Diff line change 21
21
Programming Language :: Python :: 3
22
22
Programming Language :: Python :: 3.5
23
23
Programming Language :: Python :: 3.6
24
+ Programming Language :: Python :: 3.7
25
+ Programming Language :: Python :: 3.8
24
26
Topic :: Software Development
25
27
Topic :: Scientific/Engineering
26
28
Operating System :: Microsoft :: Windows
42
44
install_requires = ['numpy' ,
43
45
'scipy' ,
44
46
'matplotlib' ],
45
- tests_require = ['scipy' ,
46
- 'matplotlib' ,
47
- 'nose' ],
48
- test_suite = 'nose.collector' ,
49
47
)
You can’t perform that action at this time.
0 commit comments