aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2020-12-16 00:38:35 +0100
committerMartin Czygan <martin.czygan@gmail.com>2020-12-16 00:38:35 +0100
commitcfd1bd54f8df435d4c5fb1d4d40943f637203398 (patch)
tree735f204ab3290aac6d41ef7e86614fdc9c03489d /Makefile
parent739676cf692d032e65dd50f61d5028e64edd0743 (diff)
downloadfuzzycat-cfd1bd54f8df435d4c5fb1d4d40943f637203398.tar.gz
fuzzycat-cfd1bd54f8df435d4c5fb1d4d40943f637203398.zip
update makefile
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 {} \;