Skip to content

Commit eaab7db

Browse files
committed
Issue #130
DOC: - added individual test commands to `README`
1 parent 6619336 commit eaab7db

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,14 @@ Other useful commands include:
102102
make lint-flake8
103103
```
104104

105+
- testing only selected tests:
106+
```bash
107+
pytest ./tests -k "test_load_coffee_pandas"
108+
109+
# or using the Makefile
110+
make test TEST=test_load_coffee_pandas
111+
```
112+
105113
- parallelized testing the package with a coverage report:
106114
```bash
107115
pytest --cov=chemotools ./tests -n="auto" --cov-report=html -x # for an HTML report

0 commit comments

Comments
 (0)