X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/a4d6fc33c3692f5b29798bfa41492a447f1aae84..96390ae52c2017ae4fb9a61831beeb68c808a2f6:/Makefile diff --git a/Makefile b/Makefile index cb7b6fee0..5ef3ba7e4 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,10 @@ -deploy: - rsync -vzr --delete --exclude="*.pyc" --exclude="/lxml" --exclude=".hg" --exclude="/manage.py" --exclude=".svn" --exclude="/lektury.sqlite" --exclude="/local_settings.py" . zuber@continental.dreamhost.com:django_projects/wolnelektury - ssh zuber@continental.dreamhost.com 'touch ~/wolnelektury.stepniowski.com/dispatch.fcgi' \ No newline at end of file +.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