From 62935720a996e4154679e90b3809320ab63b16c5 Mon Sep 17 00:00:00 2001 From: Ivan Anfimov Date: Fri, 12 Sep 2025 22:35:23 +0000 Subject: [PATCH] Remove functional test environments from tox.ini This removes tox evs which are dependent on a tests repo framework, which was deprecated. Change-Id: I8194e087e994bdbf2ccc354d05a0514d352d865c Co-authored-by: Dmitriy Rabotyagov Signed-off-by: Ivan Anfimov --- tox.ini | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/tox.ini b/tox.ini index 3a1fd81..8562900 100644 --- a/tox.ini +++ b/tox.ini @@ -59,34 +59,3 @@ commands = [testenv:venv] commands = {posargs} - -[testenv:pep8] -commands = - bash -c "{toxinidir}/tests/common/test-pep8.sh" - -[flake8] -ignore = F403,H303 - -[testenv:bashate] -commands = - bash -c "{toxinidir}/tests/common/test-bashate.sh" - -[testenv:ansible-syntax] -commands = - bash -c "{toxinidir}/tests/common/test-ansible-syntax.sh" - -[testenv:ansible-lint] -commands = - bash -c "{toxinidir}/tests/common/test-ansible-lint.sh" - -[testenv:functional] -commands = - bash -c "{toxinidir}/tests/common/test-ansible-functional.sh" - -[testenv:linters] -commands = - bash -c "{toxinidir}/tests/common/test-ansible-env-prep.sh" - {[testenv:pep8]commands} - {[testenv:bashate]commands} - {[testenv:ansible-lint]commands} - {[testenv:ansible-syntax]commands}