aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9354f76..065a9dd 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,7 @@ dist: ## Create source distribution and wheel
.PHONY: cov
cov: ## Run coverage report
- pytest --cov=fuzzycat fuzzycat/*.py tests/
+ pytest --cov-report annotate:cov_annotate --cov-report html --cov=fuzzycat fuzzycat/*.py tests/
.PHONY: test
test: ## Run coverage report
@@ -48,6 +48,8 @@ clean: ## Clean all artifacts
rm -rf fuzzycat.egg-info/
rm -rf .pytest_cache/
rm -rf .coverage
+ rm -rf htmlcov/
+ rm -rf cov_annotate/
rm -rf .mypy_cache/
find . -name "__pycache__" -type d -exec rm -rf {} \;