From: Kyrylo Shatskyy Date: Sat, 25 Oct 2025 01:05:02 +0000 (+0200) Subject: orchestra/test: drop opensuse 42.2 from opsys X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e397109dc5c404e8a61fbe9503f9b59dc788c29b;p=teuthology.git orchestra/test: drop opensuse 42.2 from opsys Signed-off-by: Kyrylo Shatskyy --- diff --git a/teuthology/orchestra/test/test_opsys.py b/teuthology/orchestra/test/test_opsys.py index fed0e7025..b69d08a1b 100644 --- a/teuthology/orchestra/test/test_opsys.py +++ b/teuthology/orchestra/test/test_opsys.py @@ -200,19 +200,6 @@ class TestOS(object): PRIVACY_POLICY_URL=https://fedoraproject.org/wiki/Legal:PrivacyPolicy """) - str_opensuse_42_2_os_release = dedent(""" - NAME="openSUSE Leap" - VERSION="42.2" - ID=opensuse - ID_LIKE="suse" - VERSION_ID="42.2" - PRETTY_NAME="openSUSE Leap 42.2" - ANSI_COLOR="0;32" - CPE_NAME="cpe:/o:opensuse:leap:42.2" - BUG_REPORT_URL="https://bugs.opensuse.org" - HOME_URL="https://www.opensuse.org/" - """) - str_opensuse_42_3_os_release = dedent(""" NAME="openSUSE Leap" VERSION="42.3" @@ -364,13 +351,6 @@ class TestOS(object): assert os.codename == '26' assert os.package_type == 'rpm' - def test_opensuse_42_2_os_release(self): - os = OS.from_os_release(self.str_opensuse_42_2_os_release) - assert os.name == 'opensuse' - assert os.version == '42.2' - assert os.codename == 'leap' - assert os.package_type == 'rpm' - def test_opensuse_42_3_os_release(self): os = OS.from_os_release(self.str_opensuse_42_3_os_release) assert os.name == 'opensuse'