diff options
author | Marek Szwałkiewicz <marek.szwalkiewicz@external.t-mobile.pl> | 2023-04-18 15:14:49 +0200 |
---|---|---|
committer | Marek Szwałkiewicz <marek.szwalkiewicz@external.t-mobile.pl> | 2023-04-18 15:28:09 +0200 |
commit | fd3162ec65954c491f88b466b422f191325f1218 (patch) | |
tree | 12f2851d85a5f6bbfe5a33fef3e3f7a27f8964a8 /infra-healthcheck/tox.ini | |
parent | 0d50a8b6987fce7b4f5dedfb33be920ddf847adb (diff) |
[INTEGRATION] Pin tox.ini basepython to 3.8
Change in tox.ini that binds python version
used to 3.8
Issue-ID: INT-2222
Change-Id: I8f93067785d84e9b3233044d2b7667a0e3a21832
Signed-off-by: Marek Szwałkiewicz <marek.szwalkiewicz@external.t-mobile.pl>
Diffstat (limited to 'infra-healthcheck/tox.ini')
-rw-r--r-- | infra-healthcheck/tox.ini | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/infra-healthcheck/tox.ini b/infra-healthcheck/tox.ini index fbbbf13..d1e9f4c 100644 --- a/infra-healthcheck/tox.ini +++ b/infra-healthcheck/tox.ini @@ -10,11 +10,11 @@ deps = install_command = pip install {opts} {packages} [testenv:pep8] -basepython = python3 +basepython = python3.8 commands = flake8 [testenv:pylint] -basepython = python3 +basepython = python3.8 allowlist_externals = pylint modules = infra_healthcheck @@ -23,7 +23,7 @@ commands = [testenv:yamllint] allowlist_externals = yamllint -basepython = python3 +basepython = python3.8 files = docker commands = @@ -31,7 +31,7 @@ commands = [testenv:py3] allowlist_externals = nosetests -basepython = python3 +basepython = python3.8 commands = nosetests --with-xunit \ --with-coverage \ --cover-tests \ @@ -42,7 +42,7 @@ commands = nosetests --with-xunit \ [testenv:bashate] allowlist_externals = bashate -basepython = python3 +basepython = python3.8 files = scripts/check_onap_k8s.sh scripts/check_onap_helm.sh |