From f126dc5e2f2a349c08ae73613fdf6c2ceec0a112 Mon Sep 17 00:00:00 2001 From: RD WebDesign Date: Tue, 12 Nov 2024 16:54:09 -0300 Subject: [PATCH] Add Fedora 41 and remove Fedora 39 from tests (v5) Signed-off-by: RD WebDesign --- .github/workflows/test.yml | 2 +- test/{_fedora_39.Dockerfile => _fedora_41.Dockerfile} | 2 +- test/{tox.fedora_39.ini => tox.fedora_41.ini} | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename test/{_fedora_39.Dockerfile => _fedora_41.Dockerfile} (97%) rename test/{tox.fedora_39.ini => tox.fedora_41.ini} (85%) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ec2b5728..c9f9cc44 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -57,8 +57,8 @@ jobs: ubuntu_23, ubuntu_24, centos_9, - fedora_39, fedora_40, + fedora_41, ] env: DISTRO: ${{matrix.distro}} diff --git a/test/_fedora_39.Dockerfile b/test/_fedora_41.Dockerfile similarity index 97% rename from test/_fedora_39.Dockerfile rename to test/_fedora_41.Dockerfile index 1727a3aa..5297e2a8 100644 --- a/test/_fedora_39.Dockerfile +++ b/test/_fedora_41.Dockerfile @@ -1,4 +1,4 @@ -FROM fedora:39 +FROM fedora:41 RUN dnf install -y git initscripts ENV GITDIR /etc/.pihole diff --git a/test/tox.fedora_39.ini b/test/tox.fedora_41.ini similarity index 85% rename from test/tox.fedora_39.ini rename to test/tox.fedora_41.ini index 7a538371..2b95a670 100644 --- a/test/tox.fedora_39.ini +++ b/test/tox.fedora_41.ini @@ -4,5 +4,5 @@ envlist = py3 [testenv] allowlist_externals = docker deps = -rrequirements.txt -commands = docker buildx build --load --progress plain -f _fedora_39.Dockerfile -t pytest_pihole:test_container ../ +commands = docker buildx build --load --progress plain -f _fedora_41.Dockerfile -t pytest_pihole:test_container ../ pytest {posargs:-vv -n auto} ./test_any_automated_install.py ./test_any_utils.py ./test_centos_fedora_common_support.py ./test_fedora_support.py