From 89c55e7e27e8dade9a1ee4a339c1c8da71c75f1d Mon Sep 17 00:00:00 2001 From: Eric Harney Date: Fri, 8 Sep 2017 10:31:28 -0400 Subject: [PATCH] Enable Python hash seed randomization in tests Unit tests should run with hash seed randomization on, to ensure code is not introduced that relies on ordered access of dicts, sets, etc. Python 3.3 enables this at runtime by default. Change-Id: I67804f6238c09b40b1828e4d15e703756ccfef31 --- tox.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/tox.ini b/tox.ini index c28c8c65..9b71f053 100644 --- a/tox.ini +++ b/tox.ini @@ -10,7 +10,6 @@ install_command = setenv = VIRTUAL_ENV={envdir} OS_STDOUT_NOCAPTURE=False OS_STDERR_NOCAPTURE=False - PYTHONHASHSEED=0 deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt