Spaces:
Sleeping
Sleeping
File size: 170 Bytes
404d784 | 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
|