We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa01c83 commit e384f25Copy full SHA for e384f25
1 file changed
tests/test_starlette.py
@@ -1,3 +1,11 @@
1
+import sys
2
+
3
+import pytest
4
5
+# Starlette only supports Python 3.6 or later
6
+if sys.version_info < (3, 6):
7
+ raise pytest.skip(allow_module_level=True)
8
9
from async_generator import yield_, async_generator
10
import pytest
11
from starlette.applications import Starlette
0 commit comments