summaryrefslogtreecommitdiff
path: root/tests/integration_tests/datasources/test_ec2_ipv6.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration_tests/datasources/test_ec2_ipv6.py')
-rw-r--r--tests/integration_tests/datasources/test_ec2_ipv6.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/integration_tests/datasources/test_ec2_ipv6.py b/tests/integration_tests/datasources/test_ec2_ipv6.py
index 7bb45b40..aff7ddd2 100644
--- a/tests/integration_tests/datasources/test_ec2_ipv6.py
+++ b/tests/integration_tests/datasources/test_ec2_ipv6.py
@@ -3,6 +3,7 @@ import re
import pytest
from tests.integration_tests.instances import IntegrationInstance
+from tests.integration_tests.integration_settings import PLATFORM
def _test_crawl(client, ip):
@@ -18,7 +19,7 @@ def _test_crawl(client, ip):
assert float(result[0]) < 20
-@pytest.mark.ec2
+@pytest.mark.skipif(PLATFORM != "ec2", reason="test is ec2 specific")
def test_dual_stack(client: IntegrationInstance):
# Drop IPv4 responses
assert client.execute("iptables -I INPUT -s 169.254.169.254 -j DROP").ok