Skip to content

Commit ef783c3

Browse files
committed
fix travis test again
1 parent 9d94651 commit ef783c3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

tests/conftest.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import sys
22

33
collect_ignore = []
4-
if sys.version_info < (3, 4):
4+
5+
if sys.version_info < (3, 6):
56
collect_ignore += ["integration/test_asyncio.py",
6-
"integration/test_asyncio_coroutine.py",
77
"integration/test_tornado.py"]
8-
elif sys.version_info < (3, 6):
9-
collect_ignore.append("integration/test_asyncio.py")
8+
9+
if sys.version_info < (3, 4):
10+
collect_ignore += ["integration/test_asyncio_coroutine.py"]

0 commit comments

Comments
 (0)