Skip to content

Commit b36d149

Browse files
committed
tests test 6
1 parent 07eb0ed commit b36d149

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/master.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
pip install -r .github/dev_requirements.txt
3131
pip install .
3232
pip install pytest-timeout
33+
pip install pytest-xvfb
3334
- name: Test with pytest
3435
env:
3536
MPLBACKEND: TkAgg

spatialmath/base/animate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def update(frame, a):
161161
ani = animation.FuncAnimation(fig=plt.gcf(), func=update, frames=range(0, nframes), fargs=(self,), blit=False, interval=interval, repeat=repeat)
162162
if movie is None:
163163
while repeat or not self.done:
164-
plt.pause(0.01)
164+
plt.pause(0.1)
165165
else:
166166
# Set up formatting for the movie files
167167
print('creating movie', movie)

0 commit comments

Comments
 (0)