We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d94651 commit ef783c3Copy full SHA for ef783c3
tests/conftest.py
@@ -1,9 +1,10 @@
1
import sys
2
3
collect_ignore = []
4
-if sys.version_info < (3, 4):
+
5
+if sys.version_info < (3, 6):
6
collect_ignore += ["integration/test_asyncio.py",
- "integration/test_asyncio_coroutine.py",
7
"integration/test_tornado.py"]
8
-elif sys.version_info < (3, 6):
9
- collect_ignore.append("integration/test_asyncio.py")
+if sys.version_info < (3, 4):
10
+ collect_ignore += ["integration/test_asyncio_coroutine.py"]
0 commit comments