summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAlexandre Conrad <alexandre.conrad@gmail.com>2014-12-20 00:54:58 +0000
committerAlexandre Conrad <alexandre.conrad@gmail.com>2014-12-20 00:54:58 +0000
commitac65fa83ff498ab5ee02a3cc73deef3c30619a00 (patch)
tree0971958df09a5ebe6249cf9d0f746e2f4e487d19 /doc
parente3486379267657e8b7d20319a9445626f93def59 (diff)
downloadtox-ac65fa83ff498ab5ee02a3cc73deef3c30619a00.tar.gz
explain how to disable PYTHONHASHSEED
Diffstat (limited to 'doc')
-rw-r--r--doc/example/basic.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/example/basic.txt b/doc/example/basic.txt
index f9a0606..49baeee 100644
--- a/doc/example/basic.txt
+++ b/doc/example/basic.txt
@@ -191,10 +191,14 @@ You can tell Tox to use an explicit hash seed value via the ``--hashseed``
command-line option to ``tox``. You can also override the hash seed value
per test environment in ``tox.ini`` as follows::
- [testenv:hash]
+ [testenv]
setenv =
PYTHONHASHSEED = 100
+If you wish to disable this feature, you can pass the command line option
+``--hashseed=noset`` when ``tox`` is invoked. You can also disable it from the
+``tox.ini`` by setting ``PYTHONHASHSEED = 0`` as described above.
+
.. _`in Python 3.3`: http://docs.python.org/3/whatsnew/3.3.html#builtin-functions-and-types
.. _PYTHONHASHSEED: http://docs.python.org/using/cmdline.html#envvar-PYTHONHASHSEED