commit 8b0a88f4a98a77414486f5a48d6ca6d8d039cb45
parent 74f4f0b278e5ac74c544800faa00e9213eb8ceed
Author: Daniel Moch <daniel@danielmoch.com>
Date: Fri, 31 Aug 2018 20:45:13 -0400
Refactor coverage
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/.coveragerc b/.coveragerc
@@ -1,3 +1,6 @@
[run]
branch = True
omit = hookmeup/__main__.py
+
+[report]
+show_missing = True
diff --git a/Makefile b/Makefile
@@ -68,7 +68,6 @@ test-install: ## install dependenices from Pipfile (for tox / CI builds)
coverage: ## check code coverage quickly with the default Python
$(PIPRUN) python -m pytest --cov=hookmeup
- $(PIPRUN) coverage report -m
coverage-html: coverage ## generate an HTML report and open in browser
$(PIPRUN) coverage html