Skip to content

Commit

Permalink
# Issue 130
Browse files Browse the repository at this point in the history
BUG:
- fixed wrong backslashes in Makefile test commands that crashes CI ?
  • Loading branch information
MothNik committed Aug 11, 2024
1 parent 9777e87 commit cd2f84b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ test:
.PHONY: test-htmlcov
test-htmlcov:
@echo Running the tests with HTML coverage report ...
pytest --cov=chemotools .\tests -n="auto" --cov-report=html -x
pytest --cov=chemotools ./tests -n="auto" --cov-report=html -x

.PHONY: test-xmlcov
test-xmlcov:
@echo Running the tests with XML coverage report ...
pytest --cov=chemotools .\tests -n="auto" --cov-report=html -x
pytest --cov=chemotools ./tests -n="auto" --cov-report=html -x
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ Other useful commands include:

- parallelized testing the package with a coverage report:
```bash
pytest --cov=chemotools .\tests -n="auto" --cov-report=html -x # for an HTML report
pytest --cov=chemotools .\tests -n="auto" --cov-report=xml -x # for an XML report
pytest --cov=chemotools ./tests -n="auto" --cov-report=html -x # for an HTML report
pytest --cov=chemotools ./tests -n="auto" --cov-report=xml -x # for an XML report
# or using the Makefile
make test-htmlcov
Expand Down

0 comments on commit cd2f84b

Please sign in to comment.