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 915590f commit 581c231Copy full SHA for 581c231
lib/matplotlib/testing/compare.py
@@ -166,8 +166,8 @@ def convert(filename, cache):
166
"""
167
base, extension = filename.rsplit('.', 1)
168
if extension not in converter:
169
- raise ImageComparisonFailure(
170
- "Don't know how to convert %s files to png" % extension)
+ from nose import SkipTest
+ raise SkipTest("Don't know how to convert %s files to png" % extension)
171
newname = base + '_' + extension + '.png'
172
if not os.path.exists(filename):
173
raise IOError("'%s' does not exist" % filename)
0 commit comments