duck-booking-tool/Makefile

9 lines
212 B
Makefile
Raw Normal View History

2015-10-20 07:53:17 +00:00
APPENDCOV = $(shell test -s test_rerun.txt && echo "-a")
test:
coverage run $(APPENDCOV) \
--source "duckbook,booking,api,accounts" \
manage.py test `cat test_rerun.txt`
coverage html
coverage report