summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAhmed⠙ <hello@clivern.com>2020-12-21 18:06:36 +0100
committerGitHub <noreply@github.com>2020-12-21 17:06:36 +0000
commit69af6cdf168df4e82d6ce0f3d05571bd100418f9 (patch)
tree0e82eb84c7ffbc4d4c2c1e2485ec130d2154c6ad
parentf04c16fdf077b0c9f4127f4ae8833ead2afe439b (diff)
downloadtox-git-69af6cdf168df4e82d6ce0f3d05571bd100418f9.tar.gz
Add py39 test environment to docs (#1756)
-rw-r--r--docs/example/basic.rst26
1 files changed, 8 insertions, 18 deletions
diff --git a/docs/example/basic.rst b/docs/example/basic.rst
index ac77700e..90048af8 100644
--- a/docs/example/basic.rst
+++ b/docs/example/basic.rst
@@ -38,27 +38,17 @@ the specified command in each of them. With:
you can restrict the test run to the python3.6 environment.
-Available "default" test environments names are:
+Tox currently understands the following patterns:
.. code-block:: shell
- py
- py2
- py27
- py3
- py34
- py35
- py36
- py37
- py38
- jython
- pypy
- pypy2
- pypy27
- pypy3
- pypy35
-
-The environment ``py`` uses the version of Python used to invoke tox.
+ py: The current Python version tox is using
+ pypy: Whatever available PyPy there is
+ jython: Whatever available Jython there is
+ pyN: Python of version N. for example py2 or py3 ... etc
+ pyNM: Python of version N.M. for example py27 or py38 ... etc
+ pypyN: PyPy of version N. for example pypy2 or pypy3 ... etc
+ pypyNM: PyPy version N.M. for example pypy27 or pypy35 ... etc
However, you can also create your own test environment names,
see some of the examples in :doc:`examples <../examples>`.