summaryrefslogtreecommitdiff
path: root/docs/development.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/development.rst')
-rw-r--r--docs/development.rst13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/development.rst b/docs/development.rst
index ea216ea..b7640a3 100644
--- a/docs/development.rst
+++ b/docs/development.rst
@@ -46,6 +46,19 @@ Or select just a single test file to run::
$ pytest tests/test_virtualenv
+You can also run the tests using ``tox`` which will take care of installing all
+the necessary requirements into its constructed Python environments. You just
+need to install ``tox`` in your environment using::
+
+ $ python -m pip install tox
+
+and then run the tests with a specific Python version using a call like::
+
+ $ python -m tox -e python3.6
+
+Run ``python -m tox -av`` for a list of all supported Python environments or just run the
+tests in all of the available ones by running just ``tox``.
+
Status and License
------------------