diff --git a/selftests/check.py b/selftests/check.py index ea81932dfa..a427e7d816 100755 --- a/selftests/check.py +++ b/selftests/check.py @@ -29,7 +29,7 @@ "nrunner-requirement": 28, "unit": 678, "jobs": 11, - "functional-parallel": 307, + "functional-parallel": 308, "functional-serial": 7, "optional-plugins": 0, "optional-plugins-golang": 2, diff --git a/selftests/functional/utils/distro.py b/selftests/functional/utils/distro.py index be9bca03f4..a29039fbea 100644 --- a/selftests/functional/utils/distro.py +++ b/selftests/functional/utils/distro.py @@ -53,3 +53,14 @@ def test_rhel_9_1(self): + os.uname().machine.encode() + b") version 9 release 1\n", ) + + def test_debian_12_7(self): + """ + :avocado: dependency={"type": "podman-image", "uri": "docker.io/library/python:3.12"} + """ + self.run_job( + "docker.io/library/python:3.12", + b"Detected distribution: debian (" + + os.uname().machine.encode() + + b") version 12 release 7\n", + )