diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-12-16 00:38:35 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-12-16 00:38:35 +0100 |
commit | cfd1bd54f8df435d4c5fb1d4d40943f637203398 (patch) | |
tree | 735f204ab3290aac6d41ef7e86614fdc9c03489d /Makefile | |
parent | 739676cf692d032e65dd50f61d5028e64edd0743 (diff) | |
download | fuzzycat-cfd1bd54f8df435d4c5fb1d4d40943f637203398.tar.gz fuzzycat-cfd1bd54f8df435d4c5fb1d4d40943f637203398.zip |
update makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 {} \; |