diff options
author | Jurko Gospodnetić <jurko.gospodnetic@pke.hr> | 2017-12-07 01:10:35 +0100 |
---|---|---|
committer | Gábor Bernát <jokerjokerer@gmail.com> | 2017-12-07 00:10:35 +0000 |
commit | 9bbcabd7f747209de4e8b09da3e9efcd79ae7934 (patch) | |
tree | 8d2480e4b665886307767a5aad0d9457286c02f0 /doc/example | |
parent | 2ce35c0020ff22401ec7b8207032f5f2257aa6f3 (diff) | |
download | tox-git-9bbcabd7f747209de4e8b09da3e9efcd79ae7934.tar.gz |
code & doc cleanup (#699)
* fix `test_envbinddir_path()` --> `test_envbindir_path()` name typo
* touch up test_envbindir_path() test
* remove extra trailing function call argument commas
* fix `doesnt` --> `doesn't` test skip reason message typo
* reduce extra code indentation
* remove dead commented out code
* remove extra trailing tuple literal comma
* remove inconsistent trailing comment period
* fix `performs` --> `performs` typo
Diffstat (limited to 'doc/example')
-rw-r--r-- | doc/example/general.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/example/general.rst b/doc/example/general.rst index b9d14c30..a37433d3 100644 --- a/doc/example/general.rst +++ b/doc/example/general.rst @@ -195,8 +195,8 @@ option: usedevelop=True 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. +``skipsdist`` to True and then perform the ``setup.py develop`` step at the +place where ``tox`` normally performs the installation of the sdist. Specifically, it actually runs ``pip install -e .`` behind the scenes, which itself calls ``setup.py develop``. |