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 b8483d2 commit d655a39Copy full SHA for d655a39
tests/test_adversity.py
@@ -8,12 +8,18 @@
8
9
import asyncio
10
import os
11
+import platform
12
import unittest
13
+import sys
14
15
from asyncpg import _testbase as tb
16
17
18
@unittest.skipIf(os.environ.get('PGHOST'), 'using remote cluster for testing')
19
+@unittest.skipIf(
20
+ platform.system() == 'Windows' and
21
+ sys.version_info >= (3, 8),
22
+ 'not compatible with ProactorEventLoop which is default in Python 3.8')
23
class TestConnectionLoss(tb.ProxiedClusterTestCase):
24
@tb.with_timeout(30.0)
25
async def test_connection_close_timeout(self):
0 commit comments