diff options
| author | Chris McDonough <chrism@plope.com> | 2011-07-01 02:17:53 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-07-01 02:17:53 -0400 |
| commit | 231f532746ceb64138448a722d97d2f49fa0030d (patch) | |
| tree | 1a5bbadfaa8ed6b4b72e13bce73c06518bb2478e /docs/tutorials/wiki2/tests.rst | |
| parent | 9477e369e9393da843c30f2d31e86484ca7e0b1c (diff) | |
| download | pyramid-231f532746ceb64138448a722d97d2f49fa0030d.tar.gz pyramid-231f532746ceb64138448a722d97d2f49fa0030d.tar.bz2 pyramid-231f532746ceb64138448a722d97d2f49fa0030d.zip | |
run setup.py develop
Diffstat (limited to 'docs/tutorials/wiki2/tests.rst')
| -rw-r--r-- | docs/tutorials/wiki2/tests.rst | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/docs/tutorials/wiki2/tests.rst b/docs/tutorials/wiki2/tests.rst index 8acf0d761..c120b1c61 100644 --- a/docs/tutorials/wiki2/tests.rst +++ b/docs/tutorials/wiki2/tests.rst @@ -57,8 +57,25 @@ Change the ``requires`` list in ``setup.py`` to include ``WebTest``. :language: python :lines: 10-19 -After we've added a dependency on WebTest in ``setup.py``, assuming our -shell's current working directory is the "tutorial" distribution directory: +After we've added a dependency on WebTest in ``setup.py``, we need to rerun +``setup.py develop`` to get WebTest installed into our virtualenv. Assuming +our shell's current working directory is the "tutorial" distribution +directory: + +On UNIX: + +.. code-block:: text + + $ ../bin/python setup.py develop + +On Windows: + +.. code-block:: text + + c:\pyramidtut\tutorial> ..\Scripts\python setup.py develop + +Once that command has completed successfully, we can run the tests +themselves: On UNIX: |
