moar tests
authorKenneth Reitz <me@kennethreitz.com>
Wed, 25 Jan 2012 14:03:20 +0000 (09:03 -0500)
committerKenneth Reitz <me@kennethreitz.com>
Wed, 25 Jan 2012 14:03:20 +0000 (09:03 -0500)
Makefile

index 8d5742e..dfbe8d3 100644 (file)
--- 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