summaryrefslogtreecommitdiff
path: root/docs/dev
diff options
context:
space:
mode:
authorPaul Nasrat <pnasrat@gmail.com>2012-05-13 16:09:52 -0700
committerPaul Nasrat <pnasrat@gmail.com>2012-05-13 16:09:52 -0700
commit2c11473816872ed2440eb305e6a920159e5e52a3 (patch)
tree5d3fc82deb076036c1938a06df82d9852e351231 /docs/dev
parent40d325366b8702b06ff5c51a473fcfde240e8827 (diff)
downloadpython-requests-2c11473816872ed2440eb305e6a920159e5e52a3.tar.gz
Improve developer documentation.
I cloned, followed the todo and had failures as no certifi or chardet. Fixed up so easy to get started.
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/todo.rst9
1 files changed, 7 insertions, 2 deletions
diff --git a/docs/dev/todo.rst b/docs/dev/todo.rst
index 0e7836db..7aa2cae8 100644
--- a/docs/dev/todo.rst
+++ b/docs/dev/todo.rst
@@ -15,10 +15,15 @@ Requests is under active development, and contributions are more than welcome!
Development dependencies
------------------------
-You'll need to install ``gunicorn`` and ``httpbin`` in order to run requests' test suite::
+You'll need to install ``gunicorn`` and ``httpbin`` and various other dependencies in
+order to run requests' test suite::
- $ pip install -r requirements.txt
+ $ virtualenv env
+ $ . env/bin/activate
+ $ make
+ $ make test
+The ``Makefile`` has various useful targets for testing.
What Needs to be Done
---------------------