summaryrefslogtreecommitdiff
path: root/tests/integration_tests/modules/test_ca_certs.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration_tests/modules/test_ca_certs.py')
-rw-r--r--tests/integration_tests/modules/test_ca_certs.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/integration_tests/modules/test_ca_certs.py b/tests/integration_tests/modules/test_ca_certs.py
index 2baedda9..65f8f4d7 100644
--- a/tests/integration_tests/modules/test_ca_certs.py
+++ b/tests/integration_tests/modules/test_ca_certs.py
@@ -11,6 +11,7 @@ import os.path
import pytest
from tests.integration_tests.instances import IntegrationInstance
+from tests.integration_tests.releases import IS_UBUNTU
from tests.integration_tests.util import get_inactive_modules, verify_clean_log
USER_DATA = """\
@@ -57,7 +58,9 @@ ca_certs:
"""
-@pytest.mark.ubuntu
+@pytest.mark.skipif(
+ not IS_UBUNTU, reason="CA cert functionality is distro specific"
+)
@pytest.mark.user_data(USER_DATA)
class TestCaCerts:
def test_certs_updated(self, class_client: IntegrationInstance):