Skip to content

Commit 565745f

Browse files
author
Kenneth Reitz
committed
Make it so.
1 parent 76b8afe commit 565745f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
init:
2+
pip install -r reqs.txt
3+
4+
test:
5+
nosetests test_requests.py --processes=30
6+
7+
ci: init
8+
nosetests --search-test --processes=30 --with-nosexunit test_requests.py
9+
pyflakes requests | awk -F\: '{printf "%s:%s: [E]%s\n", $1, $2, $3}' > violations.pyflakes.txt
10+
11+
site:
12+
cd docs; make dirhtml
13+
14+
docs: site

0 commit comments

Comments
 (0)