From dc4942d21a498bb53f94f285b6e0226da1855877 Mon Sep 17 00:00:00 2001 From: Angus Lees Date: Fri, 27 Feb 2015 13:51:17 +1100 Subject: [PATCH] Update default tox envlist to match voting gate checks Remove not-yet supported py3* environments. Note the removed environments (py33,py34) are still supported via explicit `tox -e`, it's only the default set that is changed here. ObPoliticalDisclaimer: This in no way diminishes the importance of py3 support. In fact, the intention is quite the opposite: One day py3x will be supported and the py3x test will be expected to pass. Meanwhile, if everyone has been trained to run selective `tox -epy27` tests then they will be unaware of the py3x status change and won't be testing their code against py3 - or alternatively they will believe that py3x failures are "normal" and to be ignored. The hope with doing this change now is that we will (re)train people that the default list of tox tests are expected to pass, and any failures need to be investigated. Change-Id: I992e1d6b35aa7c516c9ce14e606bbe32e895a4f0 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 54d916123..c2e8f178c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27,py33,py34,pep8 +envlist = py27,pep8 minversion = 1.8 skipsdist = True -- 2.45.2