Files
requests/Makefile
T
Kenneth Reitz 7671e3878c blah
2011-10-10 09:20:24 -04:00

15 lines
312 B
Makefile

init:
pip install -r reqs.txt
test:
nosetests tests/integration_tests.py --processes=25
ci: init
nosetests --processes=25 --source-folder=. --with-nosexunit tests/*.py
pyflakes requests | awk -F\: '{printf "%s:%s: [E]%s\n", $1, $2, $3}' > violations.pyflakes.txt
site:
cd docs; make dirhtml
docs: site