From: Brian Haley Date: Tue, 17 Feb 2015 20:57:10 +0000 (-0500) Subject: Un-break tox for unit tests X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=71ea690727e0006b02e86c901e7efc2d2c1fff70;p=openstack-build%2Fneutron-build.git Un-break tox for unit tests Running 'tox -e py27 $some_unit_test' is always failing now with tox 1.6.0, with this being printed at the beginning: ERROR: InvocationError: could not find executable 'dsvm-functional:' Seems commit 540e4d791ff2573aae38810f4c39f2d6f46d8898 (Automate host configuration for functional testing) added some code to tox.ini that requires version 1.8 or later, so make that the minimum. Change-Id: I56313d0a22dbc4007142b8bb4890d1ac8bebff94 --- diff --git a/tox.ini b/tox.ini index b9590ffb4..3779ad96f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = py27,py33,py34,pep8 -minversion = 1.6 +minversion = 1.8 skipsdist = True [testenv]