mirror of
https://github.com/kennethreitz/requests.git
synced 2026-06-05 22:50:18 +00:00
14 lines
193 B
Makefile
14 lines
193 B
Makefile
init:
|
|
pip install -r reqs.txt
|
|
|
|
test:
|
|
nosetests test_requests.py --processes=30
|
|
|
|
ci: init
|
|
nosetests --processes=30 --with-nosexunit test_requests.py
|
|
|
|
site:
|
|
cd docs; make dirhtml
|
|
|
|
docs: site
|