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 71372e7 commit 83b8407Copy full SHA for 83b8407
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