From b66f8d1d6526810fde3eda9f58d8f5371afc79ca Mon Sep 17 00:00:00 2001 From: Darragh Bailey Date: Fri, 13 Apr 2018 12:58:45 +0100 Subject: [PATCH] Use of OrderedDict allows hash seed != 0 Before the yaml parser was modified to use OrderedDict test input/output could be incorrectly ordered relative to the expected output. This has long been fixed and we should now be able to remove this setting. Change-Id: I165c3fd4189d2d0d87cc5da565cbba7df236e326 --- tox.ini | 2 -- 1 file changed, 2 deletions(-) diff --git a/tox.ini b/tox.ini index 2e641e9dd..66bbf24a3 100644 --- a/tox.ini +++ b/tox.ini @@ -4,11 +4,9 @@ envlist = docs, pep8, py34, py35, py36, py27, cover skip_missing_interpreters = true [testenv] -# Note(Vek): JJB is not compatible with a non-zero PYTHONHASHSEED setenv = LANG=en_US.UTF-8 PYTHONDONTWRITEBYTECODE=1 - PYTHONHASHSEED=0 SUBUNIT_FORMATTER=tee testr_subunit_log VIRTUAL_ENV={envdir} usedevelop = True