Skip to content
Snippets Groups Projects
Commit d1a0ff1f authored by Ned Batchelder's avatar Ned Batchelder
Browse files

Help to report on coverage

parent 52830fa0
No related branches found
No related tags found
No related merge requests found
......@@ -2,4 +2,4 @@
[run]
data_file = .coverage
source = lti_consumer
omit = */urls.py, *tests*
omit = */urls.py
.PHONY: help all install-test install compile-sass quality test upgrade
.PHONY: help all install-test install compile-sass quality test covreport upgrade
help: ## display this help message
@echo "Please use \`make <target>' where <target> is one of"
......@@ -23,6 +23,9 @@ test: ## Run the tests
rm -rf .coverage
python -m coverage run --rcfile=.coveragerc ./test.py --noinput
covreport: ## Show the coverage results
python -m coverage report -m --skip-covered
upgrade: export CUSTOM_COMPILE_COMMAND=make upgrade
upgrade: ## update the requirements/*.txt files with the latest packages satisfying requirements/*.in
pip install -q -r requirements/pip_tools.txt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment