From 951dee3e8e914e8ebbe6a02c4c903166710f1666 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Fri, 30 Sep 2016 08:57:52 +0200 Subject: [PATCH] Fix periodic-nova-py{27,35}-with-oslo-master The jobs periodic-nova-py27-with-oslo-master and periodic-nova-py35-with-oslo-master are failing with: "tox.ConfigError: ConfigError: substitution key '34,35' not found". For details, see http://logs.openstack.org/periodic/periodic-nova-py27-with-oslo-master/c01eab1/ http://logs.openstack.org/periodic/periodic-nova-py35-with-oslo-master/c10b034/ Fix this with not using a clever "py{34,35}" substitution in tox.ini and instead duplicate the line. Change-Id: If10fa53fff85350234ac1308505c273cde1333a1 --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index dac68872d1af..9aabaf79711d 100644 --- a/tox.ini +++ b/tox.ini @@ -21,7 +21,8 @@ deps = -r{toxinidir}/test-requirements.txt commands = find . -type f -name "*.pyc" -delete py27: bash tools/pretty_tox.sh '{posargs}' - py{34,35}: bash tools/pretty_tox3.sh '{posargs}' + py34: bash tools/pretty_tox3.sh '{posargs}' + py35: bash tools/pretty_tox3.sh '{posargs}' passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY OS_DEBUG GENERATE_HASHES # there is also secret magic in pretty_tox.sh which lets you run in a fail only # mode. To do this define the TRACE_FAILONLY environmental variable.