diff --git a/Makefile b/Makefile index 4f018c1..52323c1 100644 --- a/Makefile +++ b/Makefile @@ -17,18 +17,19 @@ publish: clean python setup.py register python setup.py sdist upload +check: test flake8 + + + +test: + python testscour.py + test_version: PYTHONPATH=. python -m scour.scour --version test_help: PYTHONPATH=. python -m scour.scour --help -test_error_on_flowtext: - # this is fine .. - PYTHONPATH=. scour --error-on-flowtext unittests/flowtext-less.svg /dev/null - # .. and this should bail out! - PYTHONPATH=. scour --error-on-flowtext unittests/flowtext.svg /dev/null - flake8: flake8 --max-line-length=119