Files
requests/Makefile
T
2011-12-14 10:33:29 -05:00

17 lines
314 B
Makefile

init:
pip install -r requirements.txt
test:
nosetests --with-color 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