From 4de710c431bca4c0b3826edc4fb74647c81bf7e4 Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Wed, 31 Oct 2018 18:16:31 -0400 Subject: [PATCH] Test against explicit major versions of Python We need to support py27 and py34 for Cent OS but list later interpreters for local builds. Bump minimum tox version to 2.0 to ensure we have support for the skip_missing_interpreters configuration. Change-Id: If8eb6c988c4fe558ac411e1b1001b265cae9ae99 Signed-off-by: Thanh Ha --- tox.ini | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 5eb24f70..8d17dcd1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,13 +1,17 @@ [tox] -minversion = 1.6 +minversion = 2.0 envlist = check-hooks, coala, docs, docs-linkcheck, license, - py2, - py3 + py27, + py34, + py35, + py36, + py37 +skip_missing_interpreters = true [testenv] deps = -r{toxinidir}/requirements-test.txt -- 2.16.6