From af0a85700d4d8d8a5666d40636536e0cf27d82df Mon Sep 17 00:00:00 2001 From: Teoman ONAY Date: Tue, 11 Jun 2024 11:12:53 +0200 Subject: [PATCH] tox: remove CentOS 8 from the available testing scenarios Due to CentOS 8 eol on May 31, 2024*, CentOS 8 is removed as a testing scenario OS *https://blog.centos.org/2023/04/end-dates-are-coming-for-centos-stream-8-and-centos-linux-7/ Signed-off-by: Teoman ONAY (cherry picked from commit e57492b7caa5588e39a53ace274103f9b4b08972) --- tox.ini | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 0fd05e4..3a939d1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = flake8,mypy,unittests - {el8,el9}-{functional} + {el9}-{functional} skipsdist = True [testenv:mypy] @@ -27,7 +27,7 @@ setenv= PYTHONPATH = {env:PYTHONPATH:}:{toxinidir}/library:{toxinidir}/module_utils:{toxinidir}/tests/library commands = py.test -vvv -n=auto {toxinidir}/tests/library/ {toxinidir}/tests/module_utils -[testenv:{el8,el9}-functional] +[testenv:{el9}-functional] allowlist_externals = vagrant bash @@ -36,7 +36,6 @@ passenv=* sitepackages=True setenv= # Set the vagrant box image to use - el8: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream8 el9: CEPH_ANSIBLE_VAGRANT_BOX = centos/stream9 ANSIBLE_SSH_ARGS = -F {changedir}/vagrant_ssh_config -o ControlMaster=auto -o ControlPersist=600s -o PreferredAuthentications=publickey ANSIBLE_CONFIG = {toxinidir}/ansible.cfg