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: I612cb460e89e86cb1321c3dfd5aac07e1f17e85b
Closes-bug: #1489059
This commit is contained in:
reedip
2016-01-06 13:24:05 +09:00
parent af9b6c2adb
commit 7b8f8638fc

View File

@@ -1,5 +1,5 @@
[tox]
envlist = py27,py34,pep8
envlist = py34,py27,pep8
minversion = 1.6
skipsdist = True