summaryrefslogtreecommitdiff
path: root/tests/integration_tests/modules/test_package_update_upgrade_install.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration_tests/modules/test_package_update_upgrade_install.py')
-rw-r--r--tests/integration_tests/modules/test_package_update_upgrade_install.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/integration_tests/modules/test_package_update_upgrade_install.py b/tests/integration_tests/modules/test_package_update_upgrade_install.py
index d668d81c..c54365b8 100644
--- a/tests/integration_tests/modules/test_package_update_upgrade_install.py
+++ b/tests/integration_tests/modules/test_package_update_upgrade_install.py
@@ -16,6 +16,8 @@ import re
import pytest
+from tests.integration_tests.releases import IS_UBUNTU
+
USER_DATA = """\
#cloud-config
packages:
@@ -26,7 +28,7 @@ package_upgrade: true
"""
-@pytest.mark.ubuntu
+@pytest.mark.skipif(not IS_UBUNTU, reason="Uses Apt")
@pytest.mark.user_data(USER_DATA)
class TestPackageUpdateUpgradeInstall:
def assert_package_installed(self, pkg_out, name, version=None):