OLD | NEW |
---|---|
1 COVERAGE_LIMIT=50 | 1 COVERAGE_LIMIT=50 |
2 | 2 |
3 ifeq ($(QUICK),1) | |
4 TEST_ARGS?=--quick | |
5 endif | |
6 | |
3 check: | 7 check: |
4 » python ../../third_party/pycoverage run ./test_all.py | 8 » python ../../third_party/pycoverage run ./test_all.py $(TEST_ARGS) |
5 python ../../third_party/pycoverage report --fail-under=$(COVERAGE_LIMIT ) | 9 python ../../third_party/pycoverage report --fail-under=$(COVERAGE_LIMIT ) |
10 python ../../third_party/pycoverage html | |
6 | 11 |
7 .PHONY: check | 12 .PHONY: check |
OLD | NEW |