Skip to content

Commit 0bbdbac

Browse files
author
Kenneth Reitz
committed
moar tests
1 parent c430b60 commit 0bbdbac

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Makefile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
1+
SHELL := /bin/bash
2+
13
init:
24
python setup.py develop
35
pip install -r requirements.txt
46

57
test:
6-
nosetests test_requests.py
8+
nosetests --with-color
9+
10+
server:
11+
gunicorn httpbin:app --bind=0.0.0.0:7077 &
712

813
ci: init
9-
nosetests test_requests.py --with-xunit --xunit-file=junit-report.xml
14+
nosetests --with-xunit --xunit-file=junit-report.xml
1015

1116
stats:
1217
pyflakes requests | awk -F\: '{printf "%s:%s: [E]%s\n", $1, $2, $3}' > violations.pyflakes.txt

0 commit comments

Comments
 (0)