From 930189e8c6403c53ff3ab68330f0bedb447f3f6f Mon Sep 17 00:00:00 2001 From: Reedip Banerjee Date: Thu, 3 Dec 2015 12:27:00 +0530 Subject: [PATCH] Fix db error when running python34 unit tests If tests for py27 is executed before py34 tests, then there is a chance that py34 related tests may fail.The following patch fixes it. Ref: https://review.openstack.org/#/q/status:merged++topic:bug/1489059,n,z TrivialFix Change-Id: I9dd8cab4425eb010a9d03e7c103cd00989a96cda Closes-bug: #1489059 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 377be25..03b7704 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = docs,py27,py34,pep8 +envlist = docs,py34,py27,pep8 minversion = 1.8 skipsdist = True