Skip to content

Commit 2dc679d

Browse files
committed
Skip ffs asyncio test if 3.6
1 parent 41fdde5 commit 2dc679d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/integrations/featureflags/test_featureflags.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
add_feature_flag,
88
)
99

10+
import pytest
11+
import sys
12+
1013

1114
def test_featureflags_integration(sentry_init, capture_events, uninstall_integration):
1215
uninstall_integration(FeatureFlagsIntegration.identifier)
@@ -78,6 +81,9 @@ def task(flag_key):
7881
}
7982

8083

84+
@pytest.mark.skipif(
85+
sys.version_info < (3, 7), reason="Test requires Python 3.7 or higher"
86+
)
8187
def test_featureflags_integration_asyncio(
8288
sentry_init, capture_events, uninstall_integration
8389
):

0 commit comments

Comments
 (0)