X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/a70cbcf401eb1ebc0009cc1ce9d0d8e664cc9642..4298f7948e8963176debf5877fce30c49ae4e3ad:/Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..5ef3ba7e4 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +.ONESHELL: +test: + cd src + coverage run --branch --source='.' ./manage.py test; true + rm -rf ../htmlcov + coverage html -d ../htmlcov.new + rm -rf ../htmlcov + mv ../htmlcov.new ../htmlcov + coverage report + rm .coverage