Files
requests/Makefile
T
Kenneth Reitz 6e840f46e1 make test
2011-10-15 12:16:24 -04:00

17 lines
290 B
Makefile

init:
pip install -r reqs.txt
test:
python test_requests.py
ci: init
nosetests test_requests.py --with-xunit --xunit-file=junit-report.xml
stats:
pyflakes requests | awk -F\: '{printf "%s:%s: [E]%s\n", $1, $2, $3}' > violations.pyflakes.txt
site:
cd docs; make dirhtml
docs: site