File tree Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -39,24 +39,16 @@ The following will verify there are no regression errors by running our test sui
3939
4040- Entire test suite:
4141 ```
42- nosetests -vw tests_old
42+ pytest -sv --cov-report term-missing --cov=datajoint tests
4343 ```
44- > Note: We are in the process of upgrading to ` pytest ` tests. To run those, use:
45- > ```
46- > pytest -sv --cov-report term-missing --cov=datajoint tests
47- > ```
4844
4945- A single functional test:
5046 ```
51- nosetests -vs -- tests=tests_old.test_external_class : test_insert_and_fetch
47+ pytest -sv tests/test_connection.py::test_dj_conn
5248 ```
53- > Note: We are in the process of upgrading to `pytest` tests. To run those, use:
54- > ```
55- > pytest -sv tests/test_connection.py::test_dj_conn
56- > ```
5749- A single class test:
5850 ```
59- nosetests -vs -- tests=tests_old.test_fetch : TestFetch .test_getattribute_for_fetch1
51+ pytest -sv tests/test_aggr_regressions.py::TestIssue558
6052 ```
6153
6254### Style Tests
You can’t perform that action at this time.
0 commit comments