@@ -240,7 +240,7 @@ def check_alt_backend(alt_backend):
240240
241241@pytest .mark .parametrize ("env" , _get_testable_interactive_backends ())
242242@pytest .mark .parametrize ("toolbar" , ["toolbar2" , "toolmanager" ])
243- @pytest .mark .flaky (reruns = _retry_count )
243+ @pytest .mark .flaky (reruns = _retry_count , reruns_delay = 10 )
244244def test_interactive_backend (env , toolbar ):
245245 if env ["MPLBACKEND" ] == "macosx" :
246246 if toolbar == "toolmanager" :
@@ -335,7 +335,7 @@ def _test_thread_impl():
335335
336336
337337@pytest .mark .parametrize ("env" , _thread_safe_backends )
338- @pytest .mark .flaky (reruns = _retry_count )
338+ @pytest .mark .flaky (reruns = _retry_count , reruns_delay = 10 )
339339def test_interactive_thread_safety (env ):
340340 proc = _run_helper (_test_thread_impl , timeout = _test_timeout , extra_env = env )
341341 assert proc .stdout .count ("CloseEvent" ) == 1
@@ -623,7 +623,7 @@ def _test_number_of_draws_script():
623623
624624@pytest .mark .parametrize ("env" , _blit_backends )
625625# subprocesses can struggle to get the display, so rerun a few times
626- @pytest .mark .flaky (reruns = _retry_count )
626+ @pytest .mark .flaky (reruns = _retry_count , reruns_delay = 10 )
627627def test_blitting_events (env ):
628628 proc = _run_helper (
629629 _test_number_of_draws_script , timeout = _test_timeout , extra_env = env )
0 commit comments