Small refactoring of the Makefile

This allows to easily run the tests without flake8, which makes
writing/debugging tests easier for certain workflows. It should be completely
backwards-compatible.
This commit is contained in:
René Fleschenberg
2015-07-01 01:36:46 +02:00
parent 886f53938d
commit 5475ba8b94

View File

@@ -3,9 +3,15 @@ testenv:
pip install -r requirements/tests.txt
pip install Django
test:
flake8:
flake8 compressor --ignore=E501,E128,E701,E261,E301,E126,E127,E131
runtests:
coverage run --branch --source=compressor `which django-admin.py` test --settings=compressor.test_settings compressor
coveragereport:
coverage report --omit=compressor/test*,compressor/filters/jsmin/rjsmin*,compressor/filters/cssmin/cssmin*,compressor/utils/stringformat*
.PHONY: test
test: flake8 runtests coveragereport
.PHONY: test runtests flake8 coveragereport