moar tests

This commit is contained in:
Kenneth Reitz
2012-01-25 09:03:20 -05:00
parent c430b60e38
commit 0bbdbac17f
+7 -2
View File
@@ -1,12 +1,17 @@
SHELL := /bin/bash
init:
python setup.py develop
pip install -r requirements.txt
test:
nosetests test_requests.py
nosetests --with-color
server:
gunicorn httpbin:app --bind=0.0.0.0:7077 &
ci: init
nosetests test_requests.py --with-xunit --xunit-file=junit-report.xml
nosetests --with-xunit --xunit-file=junit-report.xml
stats:
pyflakes requests | awk -F\: '{printf "%s:%s: [E]%s\n", $1, $2, $3}' > violations.pyflakes.txt