Skip to content

Commit 5e6878e

Browse files
Skip test on Python 3.6
1 parent 0ea8f7e commit 5e6878e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_shadowed_module.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ def find_unrecognized_dependencies(tree):
4545
return unrecognized_dependencies
4646

4747

48+
@pytest.mark.skipif(
49+
sys.version_info < (3, 7), reason="asyncpg imports __future__.annotations"
50+
)
4851
def test_shadowed_modules_when_importing_integrations(sentry_init):
4952
"""
5053
Check that importing integrations for third-party module raises an

0 commit comments

Comments
 (0)