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
39
39
40
40
- Entire test suite:
41
41
```
42
- nosetests -vw tests_old
42
+ pytest -sv --cov-report term-missing --cov=datajoint tests
43
43
```
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
- > ```
48
44
49
45
- A single functional test:
50
46
```
51
- nosetests -vs -- tests=tests_old.test_external_class : test_insert_and_fetch
47
+ pytest -sv tests/test_connection.py::test_dj_conn
52
48
```
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
- > ```
57
49
- A single class test:
58
50
```
59
- nosetests -vs -- tests=tests_old.test_fetch : TestFetch .test_getattribute_for_fetch1
51
+ pytest -sv tests/test_aggr_regressions.py::TestIssue558
60
52
```
61
53
62
54
### Style Tests
You can’t perform that action at this time.
0 commit comments