Skip to content

Commit 923fc08

Browse files
committed
Ignore gevent tests on less than Python 3.6
1 parent 17bccbb commit 923fc08

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/conftest.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@
22

33
if sys.version_info > (3,):
44
collect_ignore = ["test_django_channels.py"]
5+
if sys.version_info < (3, 6):
6+
collect_ignore.append('test_gevent.py')
57
else:
68
collect_ignore = ["test_aiohttp.py"]

0 commit comments

Comments
 (0)