Thanks to visit codestin.com Credit goes to github.com
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 0ff643c commit e15e7f9Copy full SHA for e15e7f9
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