summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorholger krekel <holger@merlinux.eu>2015-12-07 14:06:51 +0100
committerholger krekel <holger@merlinux.eu>2015-12-07 14:06:51 +0100
commit67250010a66cbc1b53181ab30bff3848c4519a59 (patch)
tree7f0ce561f5b37a648ed77ef7e9ebf4632c773de2 /doc
parente4c19242837bfb6d6ba1486122c5b44d418e0ea2 (diff)
parentff6898ab59957d96486b5b5ed33261eefc4b9fc4 (diff)
downloadtox-67250010a66cbc1b53181ab30bff3848c4519a59.tar.gz
merge
Diffstat (limited to 'doc')
-rw-r--r--doc/config.txt4
-rw-r--r--doc/example/basic.txt3
2 files changed, 5 insertions, 2 deletions
diff --git a/doc/config.txt b/doc/config.txt
index 8bfa57d..22f3dc7 100644
--- a/doc/config.txt
+++ b/doc/config.txt
@@ -441,7 +441,7 @@ Values from other sections can be refered to via::
{[sectionname]valuename}
which you can use to avoid repetition of config values.
-You can put default values in one section and reference them in others to avoid repeting the same values::
+You can put default values in one section and reference them in others to avoid repeating the same values::
[base]
deps =
@@ -455,7 +455,7 @@ You can put default values in one section and reference them in others to avoid
{[base]deps}
[testenv:mercurial]
- dep =
+ deps =
mercurial
{[base]deps}
diff --git a/doc/example/basic.txt b/doc/example/basic.txt
index d0ad004..64150f3 100644
--- a/doc/example/basic.txt
+++ b/doc/example/basic.txt
@@ -30,6 +30,7 @@ you can run restrict the test run to the python2.6 environment.
Available "default" test environments names are::
+ py
py24
py25
py26
@@ -43,6 +44,8 @@ Available "default" test environments names are::
pypy
pypy3
+The environment ``py`` uses the version of Python used to invoke tox.
+
However, you can also create your own test environment names,
see some of the examples in :doc:`examples <../examples>`.