preserves/implementations/python/Makefile

15 lines
302 B
Makefile
Raw Normal View History

2018-09-29 16:37:26 +00:00
test:
python2 -m unittest test_preserves
python3 -m unittest test_preserves
coverage:
python2-coverage run --branch -m unittest test_preserves
python3-coverage run --branch -m unittest test_preserves
python3-coverage html
2018-11-15 06:55:12 +00:00
clean:
rm -rf htmlcov
rm -rf __pycache__
rm -f *.pyc
rm -f .coverage