8000
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.
1 parent 0a1ae7c commit b46d8aaCopy full SHA for b46d8aa
lib/matplotlib/tests/test_animation.py
@@ -102,7 +102,8 @@ def test_movie_writer_registry():
102
assert_false(animation.writers._dirty)
103
assert_false(animation.writers.is_available("ffmpeg"))
104
# something which is garanteered to be available in path
105
- bin = u"python"
+ # and exits immediately
106
+ bin = u"true" if sys.platform != 'win32' else u"where"
107
mpl.rcParams['animation.ffmpeg_path'] = bin
108
assert_true(animation.writers._dirty)
109
animation.writers.list() # resets
0 commit comments