From c55635d42a6e6bab35307f5d728dfff0b3161901 Mon Sep 17 00:00:00 2001 From: Oliver Bestwalter Date: Fri, 25 May 2018 09:54:03 +0200 Subject: [PATCH] Fix tox spelling (all lower case). --- doc/en/goodpractices.rst | 4 ++-- doc/en/nose.rst | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/en/goodpractices.rst b/doc/en/goodpractices.rst index d9f0fff11fb..1e22c10f2cd 100644 --- a/doc/en/goodpractices.rst +++ b/doc/en/goodpractices.rst @@ -174,7 +174,7 @@ Note that this layout also works in conjunction with the ``src`` layout mentione .. _`use tox`: -Tox +tox ------ For development, we recommend to use virtualenv_ environments and pip_ @@ -194,7 +194,7 @@ Once you are done with your work and want to make sure that your actual package passes all tests you may want to look into `tox`_, the virtualenv test automation tool and its `pytest support `_. -Tox helps you to setup virtualenv environments with pre-defined +tox helps you to setup virtualenv environments with pre-defined dependencies and then executing a pre-configured test command with options. It will run tests against the installed package and not against your source code checkout, helping to detect packaging diff --git a/doc/en/nose.rst b/doc/en/nose.rst index 10a10633ab0..31dffeb3ff2 100644 --- a/doc/en/nose.rst +++ b/doc/en/nose.rst @@ -58,7 +58,7 @@ Unsupported idioms / known issues You may find yourself wanting to do this if you ran ``python setup.py install`` to set up your project, as opposed to ``python setup.py develop`` or any of the package manager equivalents. Installing with develop in a - virtual environment like Tox is recommended over this pattern. + virtual environment like tox is recommended over this pattern. - nose-style doctests are not collected and executed correctly, also doctest fixtures don't work.