mirror of
https://github.com/kennethreitz/requests.git
synced 2026-06-05 22:50:18 +00:00
17 lines
306 B
Makefile
17 lines
306 B
Makefile
init:
|
|
pip install -r reqs.txt
|
|
|
|
test:
|
|
nosetests test_requests.py --with-color
|
|
|
|
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
|