--- matplotlib-2.0.0rc2/lib/matplotlib/testing/decorators.py 2016-12-18 11:40:53.000000000 -0800 +++ matplotlib-2.0.0rc2/lib/matplotlib/testing/decorators.py.new 2017-01-07 21:19:51.078081193 -0800 @@ -266,7 +266,7 @@ class ImageComparisonTest(CleanupTest): yield do_test, fignum, actual_fname, expected_fname -def image_comparison(baseline_images=None, extensions=None, tol=0, +def image_comparison(baseline_images=None, extensions=None, tol=0.306, freetype_version=None, remove_text=False, savefig_kwarg=None, style='_classic_test'): """ --- matplotlib-2.0.0rc2/lib/matplotlib/tests/test_mathtext.py 2016-12-18 11:40:53.000000000 -0800 +++ matplotlib-2.0.0rc2/lib/matplotlib/tests/test_mathtext.py.new 2017-01-07 22:02:42.396426402 -0800 @@ -159,7 +159,7 @@ for fonts, chars in font_test_specs: def make_set(basename, fontset, tests, extensions=None): def make_test(filename, test): - @image_comparison(baseline_images=[filename], extensions=extensions) + @image_comparison(baseline_images=[filename], extensions=extensions, tol=0.310) def single_test(): matplotlib.rcParams['mathtext.fontset'] = fontset fig = plt.figure(figsize=(5.25, 0.75)) --- matplotlib-2.0.0rc2/lib/matplotlib/tests/test_patheffects.py 2016-12-18 11:40:53.000000000 -0800 +++ matplotlib-2.0.0rc2/lib/matplotlib/tests/test_patheffects.py.new 2017-01-07 21:21:08.014411109 -0800 @@ -138,7 +138,7 @@ def test_SimplePatchShadow_offset(): assert_equal(pe._offset, (4, 5)) -@image_comparison(baseline_images=['collection'], tol=0.015) +@image_comparison(baseline_images=['collection'], tol=0.083) def test_collection(): x, y = np.meshgrid(np.linspace(0, 10, 150), np.linspace(-5, 5, 100)) data = np.sin(x) + np.cos(y) --- matplotlib-2.0.0rc2/lib/matplotlib/tests/test_png.py 2016-12-18 11:40:53.000000000 -0800 +++ matplotlib-2.0.0rc2/lib/matplotlib/tests/test_png.py.new 2017-01-07 21:20:22.388215456 -0800 @@ -17,7 +17,7 @@ on_win = (sys.platform == 'win32') @image_comparison(baseline_images=['pngsuite'], extensions=['png'], - tol=0.01 if on_win else 0) + tol=0.014) def test_pngsuite(): dirname = os.path.join( os.path.dirname(__file__), --- matplotlib-2.0.0rc2/lib/matplotlib/tests/test_streamplot.py 2016-12-18 11:40:53.000000000 -0800 +++ matplotlib-2.0.0rc2/lib/matplotlib/tests/test_streamplot.py.new 2017-01-07 21:20:42.180300328 -0800 @@ -18,7 +18,7 @@ def velocity_field(): @image_comparison(baseline_images=['streamplot_colormap'], - tol=0.002) + tol=0.009) def test_colormap(): X, Y, U, V = velocity_field() plt.streamplot(X, Y, U, V, color=U, density=0.6, linewidth=2,