We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efb9198 commit 910f409Copy full SHA for 910f409
Makefile
@@ -8,7 +8,7 @@ setup:
8
## Cleans test and packaging outputs.
9
.PHONY: clean
10
clean:
11
- rm -rf .coverage build/ dist/
+ rm -rf .coverage htmlcov/ build/ dist/
12
13
## Runs tests.
14
.PHONY: test
@@ -18,7 +18,8 @@ test: clean
18
## Creates coverage report.
19
.PHONY: coverage
20
coverage:
21
- pipenv run pytest --cov=src/ --cov-report=term-missing --disable-warnings
+ pytest --cov=src/ --cov-report=term-missing --cov-report=html --disable-warnings
22
+ open htmlcov/index.html || xdg-open htmlcov/index.html
23
24
.DEFAULT:
25
@$(MAKE) help
0 commit comments