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 72500af commit 5433e79Copy full SHA for 5433e79
lib/matplotlib/testing/compare.py
@@ -174,8 +174,8 @@ def convert(filename, cache):
174
"""
175
base, extension = filename.rsplit('.', 1)
176
if extension not in converter:
177
- raise ImageComparisonFailure(
178
- "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)
179
newname = base + '_' + extension + '.png'
180
if not os.path.exists(filename):
181
raise IOError("'%s' does not exist" % filename)
0 commit comments