Skip to content

Commit ada1280

Browse files
authored
PYTHON-3011 Skip test_connections_are_only_returned_once on PyPy for now (#1239)
1 parent d86fb94 commit ada1280

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/test_load_balancer.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ class TestLB(IntegrationTest):
3737
RUN_ON_SERVERLESS = True
3838

3939
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")
4043
pool = get_pool(self.client)
4144
nconns = len(pool.sockets)
4245
self.db.test.find_one({})

0 commit comments

Comments
 (0)