diff --git a/Makefile b/Makefile index 1a3f8d3d..0ae2182e 100644 --- a/Makefile +++ b/Makefile @@ -8,13 +8,19 @@ test: nosetests ./tests/* lazy: + nosetests --with-color tests/test_requests.py + +simple: nosetests tests/test_requests.py server: gunicorn httpbin:app --bind=0.0.0.0:7077 & ci: init - nosetests --with-xunit --xunit-file=junit-report.xml + nosetests tests/test_requests.py --with-xunit --xunit-file=junit-report.xml + +simpleci: + nosetests tests/test_requests.py --with-xunit --xunit-file=junit-report.xml stats: pyflakes requests | awk -F\: '{printf "%s:%s: [E]%s\n", $1, $2, $3}' > violations.pyflakes.txt