Remove unused dependency on nose. Move to default tests discovery.
[wolnelektury.git] / Makefile
1 .ONESHELL:
2 test:
3         cd src
4         coverage run --branch --source='.' ./manage.py test; true
5         rm -rf ../htmlcov
6         coverage html -d ../htmlcov.new
7         rm -rf ../htmlcov
8         mv ../htmlcov.new ../htmlcov
9         coverage report
10         rm .coverage