Skip to content

Commit

Permalink
Skip gif rendering test temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Oct 6, 2018
1 parent c5cc414 commit a6c0cc9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions holoviews/tests/plotting/matplotlib/testrenderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"""
from __future__ import unicode_literals

import sys
from unittest import SkipTest
from nose.plugins.attrib import attr

Expand Down Expand Up @@ -72,5 +73,10 @@ def test_render_gif(self):

@attr(optional=1) # Requires ffmpeg
def test_render_mp4(self):
if sys.version_info.major == 2:
raise SkipTest("Skipped for py2 due to error that started "
"appearing after removing iris dependency: "
" matplotlib/animation.py, line 610, in finish "
"IndexError: list index out of range")
data, metadata = self.renderer.components(self.map1, 'mp4')
self.assertIn("<source src='data:video/mp4", data['text/html'])

0 comments on commit a6c0cc9

Please sign in to comment.