We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 173245c commit 4aad906Copy full SHA for 4aad906
1 file changed
tests/test_sanic.py
@@ -1,4 +1,5 @@
1
import asyncio
2
+import sys
3
4
from async_generator import yield_, async_generator
5
import pytest
@@ -11,6 +12,8 @@
11
12
from .models import DB_ARGS, PG_URL
13
14
_MAX_INACTIVE_CONNECTION_LIFETIME = 59.0
15
+pytestmark = pytest.mark.skipif(sys.version_info < (3, 6),
16
+ reason="Sanic 19.6 dropped Python 3.5 support")
17
18
19
def teardown_module():
0 commit comments