From 0bbdbac17fc40cc193679e7e84cfd06c6ae7eb9d Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 25 Jan 2012 09:03:20 -0500 Subject: [PATCH] moar tests --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8d5742e..dfbe8d3 100644 --- a/Makefile +++ b/Makefile @@ -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 -- 2.34.1