diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-10-22 23:11:18 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-10-22 23:11:26 -0700 |
commit | 943432b022b521da4ebf1b7a5760b459b44f52f0 (patch) | |
tree | f75f333a1f56b1da60aaa2cd811f4856dac605f2 /python/Makefile | |
parent | 031f51752e79dbdde47bbc95fe6b3600c9ec711a (diff) | |
download | sandcrawler-943432b022b521da4ebf1b7a5760b459b44f52f0.tar.gz sandcrawler-943432b022b521da4ebf1b7a5760b459b44f52f0.zip |
make: coverage report and HTML in one go
Diffstat (limited to 'python/Makefile')
-rw-r--r-- | python/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/python/Makefile b/python/Makefile index 43ec144..f783d0e 100644 --- a/python/Makefile +++ b/python/Makefile @@ -29,8 +29,4 @@ test: lint ## Run all tests and lints .PHONY: coverage 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 + pipenv run pytest --cov --cov-report=term --cov-report=html |