Skip to content

Commit d6c2d8f

Browse files
author
Kenneth Reitz
committed
simpleci
1 parent 4a5c94f commit d6c2d8f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,19 @@ test:
88
nosetests ./tests/*
99

1010
lazy:
11+
nosetests --with-color tests/test_requests.py
12+
13+
simple:
1114
nosetests tests/test_requests.py
1215

1316
server:
1417
gunicorn httpbin:app --bind=0.0.0.0:7077 &
1518

1619
ci: init
17-
nosetests --with-xunit --xunit-file=junit-report.xml
20+
nosetests tests/test_requests.py --with-xunit --xunit-file=junit-report.xml
21+
22+
simpleci:
23+
nosetests tests/test_requests.py --with-xunit --xunit-file=junit-report.xml
1824

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

0 commit comments

Comments
 (0)