From cfd1bd54f8df435d4c5fb1d4d40943f637203398 Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Wed, 16 Dec 2020 00:38:35 +0100 Subject: update makefile --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') 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 {} \; -- cgit v1.2.3