From 683960993079aba8d13f8a79df3ffd8ae98a833a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dirk=20M=C3=BCller?= Date: Mon, 9 Oct 2023 11:58:12 +0200 Subject: [PATCH] skip dup tests for basalt currently --- tests/test_all.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_all.py b/tests/test_all.py index 4a0de84e..6fce3400 100644 --- a/tests/test_all.py +++ b/tests/test_all.py @@ -187,6 +187,10 @@ def test_glibc_present(auto_container): assert auto_container.connection.exists(binary) +@pytest.mark.skipif( + OS_VERSION == "basalt", + reason="Basalt repos are known to be out of sync with IBS state", +) @pytest.mark.parametrize( "container_per_test", CONTAINERS_WITH_ZYPPER, indirect=True )