Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 3 additions & 11 deletions docs/src/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,16 @@ The following will verify there are no regression errors by running our test sui

- Entire test suite:
```
nosetests -vw tests_old
pytest -sv --cov-report term-missing --cov=datajoint tests
```
> Note: We are in the process of upgrading to `pytest` tests. To run those, use:
> ```
> pytest -sv --cov-report term-missing --cov=datajoint tests
> ```

- A single functional test:
```
nosetests -vs --tests=tests_old.test_external_class:test_insert_and_fetch
pytest -sv tests/test_connection.py::test_dj_conn
```
> Note: We are in the process of upgrading to `pytest` tests. To run those, use:
> ```
> pytest -sv tests/test_connection.py::test_dj_conn
> ```
- A single class test:
```
nosetests -vs --tests=tests_old.test_fetch:TestFetch.test_getattribute_for_fetch1
pytest -sv tests/test_aggr_regressions.py::TestIssue558
```

### Style Tests
Expand Down