Skip to content

Commit

Permalink
PYTHON-3519 Skip test_pool_paused_error_is_retryable on PyPy for now (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Jun 15, 2023
1 parent f7874fb commit d86fb94
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/test_retryable_reads.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,9 @@ class TestPoolPausedError(IntegrationTest):
@client_context.require_failCommand_blockConnection
@client_knobs(heartbeat_frequency=0.05, min_heartbeat_interval=0.05)
def test_pool_paused_error_is_retryable(self):
if "PyPy" in sys.version:
# Tracked in PYTHON-3519
self.skipTest("Test is flakey on PyPy")
cmap_listener = CMAPListener()
cmd_listener = OvertCommandListener()
client = rs_or_single_client(maxPoolSize=1, event_listeners=[cmap_listener, cmd_listener])
Expand Down

0 comments on commit d86fb94

Please sign in to comment.