diff options
-rw-r--r-- | python/.gitignore | 1 | ||||
-rw-r--r-- | python/Makefile | 6 |
2 files changed, 2 insertions, 5 deletions
diff --git a/python/.gitignore b/python/.gitignore index d53fac8..9b0fdb2 100644 --- a/python/.gitignore +++ b/python/.gitignore @@ -1,3 +1,4 @@ *part-000* *.tar.gz *.tsv.gz +htmlcov/ 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 |