From 1242f274d3963d2ccdc0601b10cbc22d7b04e521 Mon Sep 17 00:00:00 2001 From: Ivan Anfimov Date: Fri, 12 Sep 2025 23:14:02 +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: Idff7dbcab641fe578a6650fe0253fe4f56a81df2 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 c79dd8f..1b274e8 100644 --- a/tox.ini +++ b/tox.ini @@ -60,34 +60,3 @@ commands = [testenv:venv] commands = {posargs} - -[testenv:pep8] -commands = - bash -c "{toxinidir}/tests/common/test-pep8.sh" - -[flake8] -ignore = F403 - -[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}