We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a569f11 + 37785c9 commit 0f3dbc4Copy full SHA for 0f3dbc4
lib/matplotlib/tests/test_animation.py
@@ -30,6 +30,13 @@ def test_save_animation_smoketest():
30
31
@cleanup
32
def check_save_animation(writer, extension='mp4'):
33
+ try:
34
+ # for ImageMagick the rcparams must be patched to account for
35
+ # 'convert' being a built in MS tool, not the imagemagick
36
+ # tool.
37
+ writer._init_from_registry()
38
+ except AttributeError:
39
+ pass
40
if not animation.writers.is_available(writer):
41
raise KnownFailureTest("writer '%s' not available on this system"
42
% writer)
0 commit comments