diff options
Diffstat (limited to 'scripts/testing')
| -rw-r--r-- | scripts/testing/tests/test_packages.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/scripts/testing/tests/test_packages.py b/scripts/testing/tests/test_packages.py index 74737e2..5e90cb9 100644 --- a/scripts/testing/tests/test_packages.py +++ b/scripts/testing/tests/test_packages.py @@ -69,11 +69,14 @@ def test_bluetooth_stack_installed(host, pkg): assert host.package(pkg).is_installed +RETIRED_PACKAGES = ["blueman", "zoom"] # bt panel replaced blueman; zoom-web replaced zoom + + @pytest.mark.attribution("archsetup") -def test_blueman_not_installed(host): - # blueman was retired 2026-07-02 in favor of the dotfiles bt panel; - # its reappearance means the desktop_environment step regressed. - assert not host.package("blueman").is_installed +@pytest.mark.parametrize("pkg", RETIRED_PACKAGES) +def test_retired_package_not_installed(host, pkg): + # A reappearance means an install step regressed. + assert not host.package(pkg).is_installed @pytest.mark.attribution("archsetup") |
