diff options
| author | Chris McDonough <chrism@plope.com> | 2013-03-13 15:13:37 -0700 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2013-03-13 15:13:37 -0700 |
| commit | 13e241b21770a2471d520aa21b27e20f98aaecb3 (patch) | |
| tree | 913c9bf716432b8a1cd8e0e5779196c757eea117 /docs/tutorials/wiki2/tests.rst | |
| parent | 6d62d124ee8ffd09459690e34aae95b43d0f2d53 (diff) | |
| parent | 919643eec1a480cee442331a966a9c6c90fb0965 (diff) | |
| download | pyramid-13e241b21770a2471d520aa21b27e20f98aaecb3.tar.gz pyramid-13e241b21770a2471d520aa21b27e20f98aaecb3.tar.bz2 pyramid-13e241b21770a2471d520aa21b27e20f98aaecb3.zip | |
Merge pull request #910 from tshepang/venv
consistency: use $VENV whenever virtualenv binaries are used
Diffstat (limited to 'docs/tutorials/wiki2/tests.rst')
| -rw-r--r-- | docs/tutorials/wiki2/tests.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/tutorials/wiki2/tests.rst b/docs/tutorials/wiki2/tests.rst index 7aa3c464d..33b5d35c1 100644 --- a/docs/tutorials/wiki2/tests.rst +++ b/docs/tutorials/wiki2/tests.rst @@ -66,13 +66,13 @@ On UNIX: .. code-block:: text - $ ../bin/python setup.py develop + $ $VENV/bin/python setup.py develop On Windows: .. code-block:: text - c:\pyramidtut\tutorial> ..\Scripts\python setup.py develop + c:\pyramidtut\tutorial> %VENV%\Scripts\python setup.py develop Once that command has completed successfully, we can run the tests themselves: @@ -81,13 +81,13 @@ On UNIX: .. code-block:: text - $ ../bin/python setup.py test -q + $ $VENV/bin/python setup.py test -q On Windows: .. code-block:: text - c:\pyramidtut\tutorial> ..\Scripts\python setup.py test -q + c:\pyramidtut\tutorial> %VENV%\Scripts\python setup.py test -q The expected result ends something like: |
