diff options
-rw-r--r-- | python/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/Makefile b/python/Makefile index be876f7..43ec144 100644 --- a/python/Makefile +++ b/python/Makefile @@ -31,3 +31,6 @@ test: lint ## Run all tests and lints coverage: ## Run all tests with coverage pipenv run pytest --cov +.PHONY: coverage-html +coverage-html: ## Run all tests with coverage, HTML report output + pipenv run pytest --cov --cov-report html |