summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBin Yang <bin.yang@windriver.com>2019-08-16 02:56:04 +0000
committerBin Yang <bin.yang@windriver.com>2019-08-16 02:56:04 +0000
commit5e9eb464560f2b7f764d6d2f97052c6d45cba634 (patch)
treec5e73dafcb6aa89432945a06caa000ee1b995818
parent6068af3fd3513fb330bdf98f53b63bea909281e1 (diff)
decouple tox.ini from python minor version
Change-Id: I1bf90425afb890faf060af8741eb4dcab999da12 Issue-ID: MULTICLOUD-702 Signed-off-by: Bin Yang <bin.yang@windriver.com>
-rw-r--r--pike/tox.ini12
1 files 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*"