Skip to content

Commit 901230d

Browse files
authored
Merge pull request #360 from ExaWorks/makefile-html-coverage-report
Makefile: included html-coverage-report command
2 parents 5b6eb02 + 9e6d80a commit 901230d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ tests:
1818
coverage-tests:
1919
PYTHONPATH=$(CWD)/src:$(CWD)/tests/plugins1:$(CWD)/tests/plugins2:${PYTHONPATH} \
2020
${PYTHON} -m pytest -v --cov $(TESTARGS)
21+
22+
.PHONY: html-coverage-report
23+
html-coverage-report:
24+
PYTHONPATH=$(CWD)/src:$(CWD)/tests/plugins1:$(CWD)/tests/plugins2:${PYTHONPATH} \
25+
${PYTHON} -m pytest -v --cov --cov-report html
2126

2227
.PHONY: verbose-tests
2328
verbose-tests:

0 commit comments

Comments
 (0)