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 d86fb94 commit ada1280Copy full SHA for ada1280
test/test_load_balancer.py
@@ -37,6 +37,9 @@ class TestLB(IntegrationTest):
37
RUN_ON_SERVERLESS = True
38
39
def test_connections_are_only_returned_once(self):
40
+ if "PyPy" in sys.version:
41
+ # Tracked in PYTHON-3011
42
+ self.skipTest("Test is flaky on PyPy")
43
pool = get_pool(self.client)
44
nconns = len(pool.sockets)
45
self.db.test.find_one({})
0 commit comments