Skip to content

Commit c72b054

Browse files
committed
Reduce pause time interactive timer test
1 parent b6777b1 commit c72b054

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/matplotlib/tests/test_backends_interactive.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -652,9 +652,7 @@ def _impl_test_interactive_timers():
652652
import os
653653
from unittest.mock import Mock
654654
import matplotlib.pyplot as plt
655-
# increase pause duration on CI to let things spin up
656-
# particularly relevant for gtk3cairo
657-
pause_time = 2 if os.getenv("CI") else 0.5
655+
pause_time = 0.5
658656
fig = plt.figure()
659657
plt.pause(pause_time)
660658
timer = fig.canvas.new_timer(0.1)

0 commit comments

Comments
 (0)