From d6c2d8f1dc9d3d3cd1d9a57f1eb19aa93f8b2e99 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 26 Feb 2012 10:24:48 -0500 Subject: [PATCH] simpleci --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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