Skip to content

Commit

Permalink
Issue #130
Browse files Browse the repository at this point in the history
DOC:
- added individual test commands to `README`
  • Loading branch information
MothNik committed Aug 11, 2024
1 parent 6619336 commit eaab7db
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,14 @@ Other useful commands include:
make lint-flake8
```

- testing only selected tests:
```bash
pytest ./tests -k "test_load_coffee_pandas"
# or using the Makefile
make test TEST=test_load_coffee_pandas
```

- parallelized testing the package with a coverage report:
```bash
pytest --cov=chemotools ./tests -n="auto" --cov-report=html -x # for an HTML report
Expand Down

0 comments on commit eaab7db

Please sign in to comment.