diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-06-17 16:11:46 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-06-17 16:12:14 -0700 |
commit | 1acacd8f7e8200fa9da6d9dd4754f5ac31c9b36f (patch) | |
tree | 53f89a10ef038fb4df79d272d9a101a07e7816a3 /python/Makefile | |
parent | c14d1140ec1d6c753b609fc32e171a18110dacbf (diff) | |
download | sandcrawler-1acacd8f7e8200fa9da6d9dd4754f5ac31c9b36f.tar.gz sandcrawler-1acacd8f7e8200fa9da6d9dd4754f5ac31c9b36f.zip |
coverage-html makefile target
Diffstat (limited to 'python/Makefile')
-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 |