projects
/
services
/
python-requests.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
76b8afe
)
Make it so.
author
Kenneth Reitz
<me@kennethreitz.com>
Fri, 14 Oct 2011 00:33:39 +0000
(20:33 -0400)
committer
Kenneth Reitz
<me@kennethreitz.com>
Fri, 14 Oct 2011 00:33:39 +0000
(20:33 -0400)
Makefile
[new file with mode: 0644]
patch
|
blob
diff --git a/Makefile
b/Makefile
new file mode 100644
(file)
index 0000000..
1686ea5
--- /dev/null
+++ b/
Makefile
@@ -0,0
+1,14
@@
+init:
+ pip install -r reqs.txt
+
+test:
+ nosetests test_requests.py --processes=30
+
+ci: init
+ nosetests --search-test --processes=30 --with-nosexunit test_requests.py
+ pyflakes requests | awk -F\: '{printf "%s:%s: [E]%s\n", $1, $2, $3}' > violations.pyflakes.txt
+
+site:
+ cd docs; make dirhtml
+
+docs: site