diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -4,8 +4,8 @@ envlist = pep8,pylint,yamllint,bashate,py310,bandit,perm [testenv] usedevelop = True deps = - -chttps://git.opnfv.org/functest/plain/upper-constraints.txt - -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} + -c{toxinidir}/upper-constraints.txt + -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/stable/2024.1/upper-constraints.txt} -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt install_command = pip install --use-deprecated=legacy-resolver {opts} {packages} @@ -17,32 +17,32 @@ commands = functest_kubernetes [testenv:pep8] -basepython = python3.10 +basepython = python3.12 commands = flake8 [testenv:pylint] -basepython = python3.10 +basepython = python3.12 commands = pylint \ --ignore-imports=y --min-similarity-lines=10 \ --disable=locally-disabled,wrong-import-order --reports=n functest_kubernetes [testenv:yamllint] -basepython = python3.10 +basepython = python3.12 files =.travis.yml docker commands = yamllint {[testenv:yamllint]files} [testenv:bandit] -basepython = python3.10 +basepython = python3.12 commands = bandit -r functest_kubernetes -x tests -n 5 -ll [testenv:bashate] -basepython = python3.10 +basepython = python3.12 files =build.sh functest_kubernetes/ci/download_images.sh commands = bashate -e E005,E006,E042,E043 {[testenv:bashate]files} [testenv:perm] -basepython = python3.10 +basepython = python3.12 allowlist_externals = bash path=. -not -path './.tox/*' -not -path './.git/*' -not -path './doc/pres/reveal.js/*' -not -path './elements/functest-kubernetes/install.d/*' commands = @@ -53,6 +53,6 @@ commands = find {[testenv:perm]path} -exec file \{\} + | grep CRLF && exit 1 || exit 0" [testenv:pre-commit] -basepython = python3.10 +basepython = python3.12 commands = pre-commit run --all-files --show-diff-on-failure |