From 310d7f8a9b0215bc27bef9390a9e3e46cf81afb7 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 29 May 2017 23:40:44 -0400 Subject: [PATCH] update development documentation --- docs/dev/todo.rst | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/dev/todo.rst b/docs/dev/todo.rst index 7de5faba..ee828c3f 100644 --- a/docs/dev/todo.rst +++ b/docs/dev/todo.rst @@ -23,10 +23,11 @@ Development Dependencies You'll need to install py.test in order to run the Requests' test suite:: - $ pip install pipenv - $ pipenv lock - $ pipenv install --dev - $ pipenv run py.test tests + $ venv .venv + $ source .venv/bin/activate + + $ make + $ py.test tests ============================= test session starts ============================== platform darwin -- Python 3.4.4, pytest-3.0.6, py-1.4.32, pluggy-0.4.0 ... @@ -41,6 +42,8 @@ You'll need to install py.test in order to run the Requests' test suite:: ============== 442 passed, 1 skipped, 2 xpassed in 46.48 seconds =============== +You can also run ``$ make tests`` to run against all supported Python versions, using tox/detox. + Runtime Environments --------------------