summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini10
1 files changed, 7 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index d1eaebf..a539a37 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,9 +3,8 @@
# http://pypi.python.org/pypi/tox
#
[tox]
-# Tox 1.4 drops py24 and adds py33. In the current version, we want to
-# support 2.4, so we can't simultaneously support 3.3.
-envlist = py24,py25,py26,py27,py27-yaml,py27-noargs,py31,py32,pypy
+# Tox stopped supporting py24 as of version 1.4.
+envlist = py25,py26,py27,py27-yaml,py27-noargs,py31,py32,py33,pypy
[testenv]
# Change the working directory so that we don't import the pystache located
@@ -14,6 +13,11 @@ changedir =
{envbindir}
commands =
pystache-test {toxinidir}
+setenv =
+ # TODO: pass in an explicit random value so that we can display the
+ # value when running tests. We can probably do this by having tox
+ # call a wrapper shell script.
+ PYTHONHASHSEED = random
# Check that the spec tests work with PyYAML.
[testenv:py27-yaml]