File size: 161 Bytes
53e66de | 1 2 3 4 5 6 7 8 9 10 | # Makefile
.PHONY: test
test:
python -m unittest discover -s tests
.PHONY: test_with_coverage
test_with_coverage:
coverage run -m unittest discover -s tests
|
53e66de | 1 2 3 4 5 6 7 8 9 10 | # Makefile
.PHONY: test
test:
python -m unittest discover -s tests
.PHONY: test_with_coverage
test_with_coverage:
coverage run -m unittest discover -s tests
|