Merge "Set python hash seed to 0 in tox.ini" into stable/icehouse

This commit is contained in:
Jenkins 2014-08-18 18:23:06 +00:00 committed by Gerrit Code Review
commit 93f3c78a8b
1 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,10 @@ minversion = 1.6
skipsdist = True
[testenv]
# Note the hash seed is set to 0 until heat can be tested with a
# random hash seed successfully.
setenv = VIRTUAL_ENV={envdir}
PYTHONHASHSEED=0
usedevelop = True
install_command = pip install {opts} {packages}
deps = -r{toxinidir}/requirements.txt
@ -22,7 +25,6 @@ commands =
commands = {posargs}
[testenv:cover]
setenv = VIRTUAL_ENV={envdir}
commands =
python setup.py testr --coverage --testr-args='{posargs}'