We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41fdde5 commit 2dc679dCopy full SHA for 2dc679d
tests/integrations/featureflags/test_featureflags.py
@@ -7,6 +7,9 @@
7
add_feature_flag,
8
)
9
10
+import pytest
11
+import sys
12
+
13
14
def test_featureflags_integration(sentry_init, capture_events, uninstall_integration):
15
uninstall_integration(FeatureFlagsIntegration.identifier)
@@ -78,6 +81,9 @@ def task(flag_key):
78
81
}
79
82
80
83
84
+@pytest.mark.skipif(
85
+ sys.version_info < (3, 7), reason="Test requires Python 3.7 or higher"
86
+)
87
def test_featureflags_integration_asyncio(
88
sentry_init, capture_events, uninstall_integration
89
):
0 commit comments