Skip to content

Commit e755b97

Browse files
committed
Remove nosetest commands from dev docs
1 parent 03db252 commit e755b97

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

docs/src/develop.md

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)