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 890c5ad commit f6b96e5Copy full SHA for f6b96e5
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