From 5e9eb464560f2b7f764d6d2f97052c6d45cba634 Mon Sep 17 00:00:00 2001 From: Bin Yang Date: Fri, 16 Aug 2019 02:56:04 +0000 Subject: decouple tox.ini from python minor version Change-Id: I1bf90425afb890faf060af8741eb4dcab999da12 Issue-ID: MULTICLOUD-702 Signed-off-by: Bin Yang --- pike/tox.ini | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pike/tox.ini b/pike/tox.ini index d4f5d579..85319de0 100644 --- a/pike/tox.ini +++ b/pike/tox.ini @@ -13,7 +13,7 @@ # limitations under the License. [tox] -envlist = py35,pep8,cov,pylint +envlist = py36,pep8,cov,pylint skipsdist = true [tox:jenkins] @@ -26,10 +26,10 @@ max-complexity = 27 [testenv] basepython = - py35: python3.5 - pep8: python3.5 - cov: python3.5 - pylint: python3.5 + py36: python3 + pep8: python3 + cov: python3 + pylint: python3 setenv = PYTHONPATH = {toxinidir}/../share deps = @@ -41,7 +41,7 @@ commands = [testenv:pep8] deps=flake8 -commands=python3.5 -m flake8 +commands=python3 -m flake8 [testenv:cov] commands = coverage xml --omit="./venv-tox/*,./.tox/*,*tests*,*__init__.py,*newton_base*,*common*, *site-packages*" -- cgit 1.2.3-korg