summaryrefslogtreecommitdiff
path: root/doc/example
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2013-07-16 10:58:20 -0400
committerMonty Taylor <mordred@inaugust.com>2013-07-16 10:58:20 -0400
commit115d97c0b0e7befc1dcbb707c0e554164939950f (patch)
treed0bf95cba2c972696f5f1cbb71fbec198d177298 /doc/example
parenta00871f888376a4e147a324c6e0983410b3674db (diff)
downloadtox-115d97c0b0e7befc1dcbb707c0e554164939950f.tar.gz
Add documentation for the --develop option
Diffstat (limited to 'doc/example')
-rw-r--r--doc/example/general.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/example/general.txt b/doc/example/general.txt
index 0b3a5ff..296036f 100644
--- a/doc/example/general.txt
+++ b/doc/example/general.txt
@@ -169,7 +169,8 @@ Running setup.py develop is a common enough model that it has its own option::
[tox]
usedevelop=True
-Which will set ``skipsdist`` to True and then perform the ``setup.py develop``
+And a corresponding command line option ``--develop``, which will set
+``skipsdist`` to True and then perform the ``setup.py develop``
step at the place where ``tox`` normally perfoms the installation of the sdist.
Specifically, it actually runs ``pip install -e .`` behind the scenes, which
itself calls ``setup.py develop``.