This commit is contained in:
Kenneth Reitz
2012-02-26 10:24:48 -05:00
parent 4a5c94f410
commit d6c2d8f1dc
+7 -1
View File
@@ -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