File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed
Expand file tree Collapse file tree 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::
9999Testing
100100-------
101101
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::
104104
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/
106112
107113License
108114-------
Original file line number Diff line number Diff line change 2121Programming Language :: Python :: 3
2222Programming Language :: Python :: 3.5
2323Programming Language :: Python :: 3.6
24+ Programming Language :: Python :: 3.7
25+ Programming Language :: Python :: 3.8
2426Topic :: Software Development
2527Topic :: Scientific/Engineering
2628Operating System :: Microsoft :: Windows
4244 install_requires = ['numpy' ,
4345 'scipy' ,
4446 'matplotlib' ],
45- tests_require = ['scipy' ,
46- 'matplotlib' ,
47- 'nose' ],
48- test_suite = 'nose.collector' ,
4947)
You can’t perform that action at this time.
0 commit comments