decouple tox.ini from python minor version 44/93644/1
authorBin Yang <bin.yang@windriver.com>
Fri, 16 Aug 2019 02:56:04 +0000 (02:56 +0000)
committerBin Yang <bin.yang@windriver.com>
Fri, 16 Aug 2019 02:56:04 +0000 (02:56 +0000)
Change-Id: I1bf90425afb890faf060af8741eb4dcab999da12
Issue-ID: MULTICLOUD-702
Signed-off-by: Bin Yang <bin.yang@windriver.com>
pike/tox.ini

index d4f5d57..85319de 100644 (file)
@@ -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*"