summaryrefslogtreecommitdiff
path: root/tests/integration_tests/bugs/test_lp1910835.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration_tests/bugs/test_lp1910835.py')
-rw-r--r--tests/integration_tests/bugs/test_lp1910835.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/integration_tests/bugs/test_lp1910835.py b/tests/integration_tests/bugs/test_lp1910835.py
index 1844594c..aa0fb75c 100644
--- a/tests/integration_tests/bugs/test_lp1910835.py
+++ b/tests/integration_tests/bugs/test_lp1910835.py
@@ -19,13 +19,15 @@ will match.
"""
import pytest
+from tests.integration_tests.integration_settings import PLATFORM
+
USER_DATA_TMPL = """\
#cloud-config
ssh_authorized_keys:
- {}"""
-@pytest.mark.azure
+@pytest.mark.skipif(PLATFORM != "azure", reason="Test is Azure specific")
def test_crlf_in_azure_metadata_ssh_keys(session_cloud, setup_image):
authorized_keys_path = "/home/{}/.ssh/authorized_keys".format(
session_cloud.cloud_instance.username