Thanks to visit codestin.com Credit goes to github.com
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 e3e2be9 commit 6a01829Copy full SHA for 6a01829
lib/matplotlib/tests/test_animation.py
@@ -180,7 +180,8 @@ def test_movie_writer_registry():
180
assert_false(animation.writers._dirty)
181
assert_false(animation.writers.is_available("ffmpeg"))
182
# something which is garanteered to be available in path
183
- bin = u"python"
+ # and exits immediately
184
+ bin = u"true" if sys.platform != 'win32' else u"where"
185
mpl.rcParams['animation.ffmpeg_path'] = bin
186
assert_true(animation.writers._dirty)
187
animation.writers.list() # resets
0 commit comments