Blame 0003-Increase-some-tolerances-for-32-bit-systems.patch

62d04f9
From b8a97810843ff739cb98cb5159843f2836dbd8b3 Mon Sep 17 00:00:00 2001
62d04f9
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
62d04f9
Date: Sat, 31 Mar 2018 00:15:14 -0400
62d04f9
Subject: [PATCH 3/3] Increase some tolerances for 32-bit systems.
62d04f9
62d04f9
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
62d04f9
---
62d04f9
 lib/matplotlib/testing/decorators.py          |  2 +-
62d04f9
 lib/matplotlib/tests/test_artist.py           |  3 +-
62d04f9
 lib/matplotlib/tests/test_axes.py             | 47 +++++++++----------
62d04f9
 lib/matplotlib/tests/test_collections.py      |  2 +-
62d04f9
 lib/matplotlib/tests/test_colorbar.py         | 11 +++--
62d04f9
 .../tests/test_constrainedlayout.py           |  2 +-
62d04f9
 lib/matplotlib/tests/test_contour.py          |  6 +--
62d04f9
 lib/matplotlib/tests/test_image.py            |  2 +-
62d04f9
 lib/matplotlib/tests/test_mathtext.py         |  4 +-
62d04f9
 lib/matplotlib/tests/test_patches.py          |  3 +-
62d04f9
 lib/matplotlib/tests/test_patheffects.py      |  2 +-
62d04f9
 lib/matplotlib/tests/test_pickle.py           |  2 +-
62d04f9
 lib/matplotlib/tests/test_quiver.py           |  2 +-
62d04f9
 lib/matplotlib/tests/test_streamplot.py       |  3 +-
62d04f9
 lib/matplotlib/tests/test_transforms.py       |  2 +-
62d04f9
 .../tests/test_axisartist_floating_axes.py    |  4 +-
62d04f9
 ...test_axisartist_grid_helper_curvelinear.py |  6 +--
62d04f9
 lib/mpl_toolkits/tests/test_mplot3d.py        |  4 +-
62d04f9
 18 files changed, 53 insertions(+), 54 deletions(-)
62d04f9
62d04f9
diff --git a/lib/matplotlib/testing/decorators.py b/lib/matplotlib/testing/decorators.py
62d04f9
index 0ce6e6252..9a80eec1a 100644
62d04f9
--- a/lib/matplotlib/testing/decorators.py
62d04f9
+++ b/lib/matplotlib/testing/decorators.py
62d04f9
@@ -408,7 +408,7 @@ def _pytest_image_comparison(baseline_images, extensions, tol,
62d04f9
     return decorator
62d04f9
 
62d04f9
 
62d04f9
-def image_comparison(baseline_images, extensions=None, tol=0,
62d04f9
+def image_comparison(baseline_images, extensions=None, tol=0.1,
62d04f9
                      freetype_version=None, remove_text=False,
62d04f9
                      savefig_kwarg=None,
62d04f9
                      # Default of mpl_test_settings fixture and cleanup too.
62d04f9
diff --git a/lib/matplotlib/tests/test_artist.py b/lib/matplotlib/tests/test_artist.py
62d04f9
index e6aff72bf..b60305bcf 100644
62d04f9
--- a/lib/matplotlib/tests/test_artist.py
62d04f9
+++ b/lib/matplotlib/tests/test_artist.py
62d04f9
@@ -96,7 +96,8 @@ def test_collection_transform_of_none():
62d04f9
     assert isinstance(c._transOffset, mtransforms.IdentityTransform)
62d04f9
 
62d04f9
 
62d04f9
-@image_comparison(baseline_images=["clip_path_clipping"], remove_text=True)
62d04f9
+@image_comparison(baseline_images=["clip_path_clipping"], remove_text=True,
62d04f9
+                  tol=0.28)
62d04f9
 def test_clipping():
62d04f9
     exterior = mpath.Path.unit_rectangle().deepcopy()
62d04f9
     exterior.vertices *= 4
62d04f9
diff --git a/lib/matplotlib/tests/test_axes.py b/lib/matplotlib/tests/test_axes.py
62d04f9
index 2fa6c2c94..8c589f514 100644
62d04f9
--- a/lib/matplotlib/tests/test_axes.py
62d04f9
+++ b/lib/matplotlib/tests/test_axes.py
62d04f9
@@ -555,7 +555,7 @@ def test_single_point():
62d04f9
     plt.plot('b', 'b', 'o', data=data)
62d04f9
 
62d04f9
 
62d04f9
-@image_comparison(baseline_images=['single_date'])
62d04f9
+@image_comparison(baseline_images=['single_date'], tol=1.97)
62d04f9
 def test_single_date():
62d04f9
     time1 = [721964.0]
62d04f9
     data1 = [-65.54]
62d04f9
@@ -739,8 +739,7 @@ def test_polar_rlabel_position():
62d04f9
     ax.tick_params(rotation='auto')
62d04f9
 
62d04f9
 
62d04f9
-@image_comparison(baseline_images=['polar_theta_wedge'], style='default',
62d04f9
-                  tol=0.01 if six.PY2 else 0)
62d04f9
+@image_comparison(baseline_images=['polar_theta_wedge'], style='default')
62d04f9
 def test_polar_theta_limits():
62d04f9
     r = np.arange(0, 3.0, 0.01)
62d04f9
     theta = 2*np.pi*r
62d04f9
@@ -1023,7 +1022,7 @@ def test_fill_between_interpolate():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['fill_between_interpolate_decreasing'],
62d04f9
-                  style='mpl20', remove_text=True)
62d04f9
+                  style='mpl20', remove_text=True, tol=0.78)
62d04f9
 def test_fill_between_interpolate_decreasing():
62d04f9
     p = np.array([724.3, 700, 655])
62d04f9
     t = np.array([9.4, 7, 2.2])
62d04f9
@@ -1105,7 +1104,7 @@ def test_pcolormesh():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['pcolormesh_datetime_axis'],
62d04f9
-                  extensions=['png'], remove_text=False)
62d04f9
+                  extensions=['png'], remove_text=False, tol=0.19)
62d04f9
 def test_pcolormesh_datetime_axis():
62d04f9
     fig = plt.figure()
62d04f9
     fig.subplots_adjust(hspace=0.4, top=0.98, bottom=.15)
62d04f9
@@ -1131,7 +1130,7 @@ def test_pcolormesh_datetime_axis():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['pcolor_datetime_axis'],
62d04f9
-                  extensions=['png'], remove_text=False)
62d04f9
+                  extensions=['png'], remove_text=False, tol=0.19)
62d04f9
 def test_pcolor_datetime_axis():
62d04f9
     fig = plt.figure()
62d04f9
     fig.subplots_adjust(hspace=0.4, top=0.98, bottom=.15)
62d04f9
@@ -1188,7 +1187,7 @@ def test_canonical():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['arc_angles'], remove_text=True,
62d04f9
-                  style='default', extensions=['png'])
62d04f9
+                  style='default', extensions=['png'], tol=0.17)
62d04f9
 def test_arc_angles():
62d04f9
     from matplotlib import patches
62d04f9
     # Ellipse parameters
62d04f9
@@ -2450,7 +2449,7 @@ def test_boxplot_mod_artist_after_plotting():
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['violinplot_vert_baseline',
62d04f9
                                    'violinplot_vert_baseline'],
62d04f9
-                  extensions=['png'])
62d04f9
+                  extensions=['png'], tol=0.24)
62d04f9
 def test_vert_violinplot_baseline():
62d04f9
     # First 9 digits of frac(sqrt(2))
62d04f9
     np.random.seed(414213562)
62d04f9
@@ -2468,7 +2467,7 @@ def test_vert_violinplot_baseline():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['violinplot_vert_showmeans'],
62d04f9
-                  extensions=['png'])
62d04f9
+                  extensions=['png'], tol=0.23)
62d04f9
 def test_vert_violinplot_showmeans():
62d04f9
     ax = plt.axes()
62d04f9
     # First 9 digits of frac(sqrt(3))
62d04f9
@@ -2479,7 +2478,7 @@ def test_vert_violinplot_showmeans():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['violinplot_vert_showextrema'],
62d04f9
-                  extensions=['png'])
62d04f9
+                  extensions=['png'], tol=0.23)
62d04f9
 def test_vert_violinplot_showextrema():
62d04f9
     ax = plt.axes()
62d04f9
     # First 9 digits of frac(sqrt(5))
62d04f9
@@ -2490,7 +2489,7 @@ def test_vert_violinplot_showextrema():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['violinplot_vert_showmedians'],
62d04f9
-                  extensions=['png'])
62d04f9
+                  extensions=['png'], tol=0.23)
62d04f9
 def test_vert_violinplot_showmedians():
62d04f9
     ax = plt.axes()
62d04f9
     # First 9 digits of frac(sqrt(7))
62d04f9
@@ -2501,7 +2500,7 @@ def test_vert_violinplot_showmedians():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['violinplot_vert_showall'],
62d04f9
-                  extensions=['png'])
62d04f9
+                  extensions=['png'], tol=0.2)
62d04f9
 def test_vert_violinplot_showall():
62d04f9
     ax = plt.axes()
62d04f9
     # First 9 digits of frac(sqrt(11))
62d04f9
@@ -2512,7 +2511,7 @@ def test_vert_violinplot_showall():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['violinplot_vert_custompoints_10'],
62d04f9
-                  extensions=['png'])
62d04f9
+                  extensions=['png'], tol=0.22)
62d04f9
 def test_vert_violinplot_custompoints_10():
62d04f9
     ax = plt.axes()
62d04f9
     # First 9 digits of frac(sqrt(13))
62d04f9
@@ -2523,7 +2522,7 @@ def test_vert_violinplot_custompoints_10():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['violinplot_vert_custompoints_200'],
62d04f9
-                  extensions=['png'])
62d04f9
+                  extensions=['png'], tol=0.22)
62d04f9
 def test_vert_violinplot_custompoints_200():
62d04f9
     ax = plt.axes()
62d04f9
     # First 9 digits of frac(sqrt(17))
62d04f9
@@ -2534,7 +2533,7 @@ def test_vert_violinplot_custompoints_200():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['violinplot_horiz_baseline'],
62d04f9
-                  extensions=['png'])
62d04f9
+                  extensions=['png'], tol=0.2)
62d04f9
 def test_horiz_violinplot_baseline():
62d04f9
     ax = plt.axes()
62d04f9
     # First 9 digits of frac(sqrt(19))
62d04f9
@@ -2545,7 +2544,7 @@ def test_horiz_violinplot_baseline():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['violinplot_horiz_showmedians'],
62d04f9
-                  extensions=['png'])
62d04f9
+                  extensions=['png'], tol=0.23)
62d04f9
 def test_horiz_violinplot_showmedians():
62d04f9
     ax = plt.axes()
62d04f9
     # First 9 digits of frac(sqrt(23))
62d04f9
@@ -2556,7 +2555,7 @@ def test_horiz_violinplot_showmedians():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['violinplot_horiz_showmeans'],
62d04f9
-                  extensions=['png'])
62d04f9
+                  extensions=['png'], tol=0.25)
62d04f9
 def test_horiz_violinplot_showmeans():
62d04f9
     ax = plt.axes()
62d04f9
     # First 9 digits of frac(sqrt(29))
62d04f9
@@ -2567,7 +2566,7 @@ def test_horiz_violinplot_showmeans():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['violinplot_horiz_showextrema'],
62d04f9
-                  extensions=['png'])
62d04f9
+                  extensions=['png'], tol=0.2)
62d04f9
 def test_horiz_violinplot_showextrema():
62d04f9
     ax = plt.axes()
62d04f9
     # First 9 digits of frac(sqrt(31))
62d04f9
@@ -2578,7 +2577,7 @@ def test_horiz_violinplot_showextrema():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['violinplot_horiz_showall'],
62d04f9
-                  extensions=['png'])
62d04f9
+                  extensions=['png'], tol=0.19)
62d04f9
 def test_horiz_violinplot_showall():
62d04f9
     ax = plt.axes()
62d04f9
     # First 9 digits of frac(sqrt(37))
62d04f9
@@ -2589,7 +2588,7 @@ def test_horiz_violinplot_showall():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['violinplot_horiz_custompoints_10'],
62d04f9
-                  extensions=['png'])
62d04f9
+                  extensions=['png'], tol=0.22)
62d04f9
 def test_horiz_violinplot_custompoints_10():
62d04f9
     ax = plt.axes()
62d04f9
     # First 9 digits of frac(sqrt(41))
62d04f9
@@ -2600,7 +2599,7 @@ def test_horiz_violinplot_custompoints_10():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['violinplot_horiz_custompoints_200'],
62d04f9
-                  extensions=['png'])
62d04f9
+                  extensions=['png'], tol=0.22)
62d04f9
 def test_horiz_violinplot_custompoints_200():
62d04f9
     ax = plt.axes()
62d04f9
     # First 9 digits of frac(sqrt(43))
62d04f9
@@ -3947,7 +3946,7 @@ def test_psd_noise():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['csd_freqs'], remove_text=True,
62d04f9
-                  extensions=['png'], tol=0.002)
62d04f9
+                  extensions=['png'], tol=0.21)
62d04f9
 def test_csd_freqs():
62d04f9
     '''test axes.csd with sinusoidal stimuli'''
62d04f9
     n = 10000
62d04f9
@@ -4806,7 +4805,7 @@ def test_rc_spines():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['rc_grid'], extensions=['png'],
62d04f9
-                  savefig_kwarg={'dpi': 40})
62d04f9
+                  savefig_kwarg={'dpi': 40}, tol=0.2)
62d04f9
 def test_rc_grid():
62d04f9
     fig = plt.figure()
62d04f9
     rc_dict0 = {
62d04f9
@@ -5301,7 +5300,7 @@ def test_date_timezone_y():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['date_timezone_x_and_y'],
62d04f9
-                  extensions=['png'])
62d04f9
+                  extensions=['png'], tol=3.05)
62d04f9
 def test_date_timezone_x_and_y():
62d04f9
     # Tests issue 5575
62d04f9
     time_index = [pytz.timezone('UTC').localize(datetime.datetime(
62d04f9
diff --git a/lib/matplotlib/tests/test_collections.py b/lib/matplotlib/tests/test_collections.py
62d04f9
index 291647d17..265f23fed 100644
62d04f9
--- a/lib/matplotlib/tests/test_collections.py
62d04f9
+++ b/lib/matplotlib/tests/test_collections.py
62d04f9
@@ -467,7 +467,7 @@ def test_EllipseCollection():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['polycollection_close'],
62d04f9
-                  extensions=['png'], remove_text=True)
62d04f9
+                  extensions=['png'], remove_text=True, tol=0.45)
62d04f9
 def test_polycollection_close():
62d04f9
     from mpl_toolkits.mplot3d import Axes3D
62d04f9
 
62d04f9
diff --git a/lib/matplotlib/tests/test_colorbar.py b/lib/matplotlib/tests/test_colorbar.py
62d04f9
index 12a9bed3b..86d2358fb 100644
62d04f9
--- a/lib/matplotlib/tests/test_colorbar.py
62d04f9
+++ b/lib/matplotlib/tests/test_colorbar.py
62d04f9
@@ -95,7 +95,7 @@ def _colorbar_extension_length(spacing):
62d04f9
 @image_comparison(
62d04f9
         baseline_images=['colorbar_extensions_shape_uniform',
62d04f9
                          'colorbar_extensions_shape_proportional'],
62d04f9
-        extensions=['png'])
62d04f9
+        extensions=['png'], tol=0.16)
62d04f9
 def test_colorbar_extension_shape():
62d04f9
     '''Test rectangular colorbar extensions.'''
62d04f9
     # Create figures for uniform and proportionally spaced colorbars.
62d04f9
@@ -105,7 +105,7 @@ def test_colorbar_extension_shape():
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['colorbar_extensions_uniform',
62d04f9
                                    'colorbar_extensions_proportional'],
62d04f9
-                  extensions=['png'])
62d04f9
+                  extensions=['png'], tol=0.25)
62d04f9
 def test_colorbar_extension_length():
62d04f9
     '''Test variable length colorbar extensions.'''
62d04f9
     # Create figures for uniform and proportionally spaced colorbars.
62d04f9
@@ -119,7 +119,7 @@ def test_colorbar_extension_length():
62d04f9
                                    'cbar_sharing',
62d04f9
                                    ],
62d04f9
                   extensions=['png'], remove_text=True,
62d04f9
-                  savefig_kwarg={'dpi': 40})
62d04f9
+                  savefig_kwarg={'dpi': 40}, tol=0.17)
62d04f9
 def test_colorbar_positioning():
62d04f9
     data = np.arange(1200).reshape(30, 40)
62d04f9
     levels = [0, 200, 400, 600, 800, 1000, 1200]
62d04f9
@@ -173,7 +173,7 @@ def test_colorbar_positioning():
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['cbar_with_subplots_adjust'],
62d04f9
                   extensions=['png'], remove_text=True,
62d04f9
-                  savefig_kwarg={'dpi': 40})
62d04f9
+                  savefig_kwarg={'dpi': 40}, tol=0.17)
62d04f9
 def test_gridspec_make_colorbar():
62d04f9
     plt.figure()
62d04f9
     data = np.arange(1200).reshape(30, 40)
62d04f9
@@ -232,7 +232,8 @@ def test_colorbarbase():
62d04f9
 
62d04f9
 @image_comparison(
62d04f9
     baseline_images=['colorbar_closed_patch'],
62d04f9
-    remove_text=True)
62d04f9
+    remove_text=True,
62d04f9
+    tol=0.22)
62d04f9
 def test_colorbar_closed_patch():
62d04f9
     fig = plt.figure(figsize=(8, 6))
62d04f9
     ax1 = fig.add_axes([0.05, 0.85, 0.9, 0.1])
62d04f9
diff --git a/lib/matplotlib/tests/test_constrainedlayout.py b/lib/matplotlib/tests/test_constrainedlayout.py
62d04f9
index fcf633a08..cad431771 100644
62d04f9
--- a/lib/matplotlib/tests/test_constrainedlayout.py
62d04f9
+++ b/lib/matplotlib/tests/test_constrainedlayout.py
62d04f9
@@ -295,7 +295,7 @@ def test_constrained_layout12():
62d04f9
     ax.set_xlabel('x-label')
62d04f9
 
62d04f9
 
62d04f9
-@image_comparison(baseline_images=['constrained_layout13'], tol=2.e-2,
62d04f9
+@image_comparison(baseline_images=['constrained_layout13'], tol=3.e-2,
62d04f9
         extensions=['png'])
62d04f9
 def test_constrained_layout13():
62d04f9
     'Test that padding works.'
62d04f9
diff --git a/lib/matplotlib/tests/test_contour.py b/lib/matplotlib/tests/test_contour.py
62d04f9
index 42903ac68..f03a5d0af 100644
62d04f9
--- a/lib/matplotlib/tests/test_contour.py
62d04f9
+++ b/lib/matplotlib/tests/test_contour.py
62d04f9
@@ -217,7 +217,7 @@ def test_given_colors_levels_and_extends():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['contour_datetime_axis'],
62d04f9
-                  extensions=['png'], remove_text=False)
62d04f9
+                  extensions=['png'], remove_text=False, tol=0.18)
62d04f9
 def test_contour_datetime_axis():
62d04f9
     fig = plt.figure()
62d04f9
     fig.subplots_adjust(hspace=0.4, top=0.98, bottom=.15)
62d04f9
@@ -243,7 +243,7 @@ def test_contour_datetime_axis():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['contour_test_label_transforms'],
62d04f9
-                  extensions=['png'], remove_text=True)
62d04f9
+                  extensions=['png'], remove_text=True, tol=1.38)
62d04f9
 def test_labels():
62d04f9
     # Adapted from pylab_examples example code: contour_demo.py
62d04f9
     # see issues #2475, #2843, and #2818 for explanation
62d04f9
@@ -274,7 +274,7 @@ def test_labels():
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['contour_corner_mask_False',
62d04f9
                                    'contour_corner_mask_True'],
62d04f9
-                  extensions=['png'], remove_text=True)
62d04f9
+                  extensions=['png'], remove_text=True, tol=0.19)
62d04f9
 def test_corner_mask():
62d04f9
     n = 60
62d04f9
     mask_level = 0.95
62d04f9
diff --git a/lib/matplotlib/tests/test_image.py b/lib/matplotlib/tests/test_image.py
62d04f9
index e6da25789..ed3ab63c9 100644
62d04f9
--- a/lib/matplotlib/tests/test_image.py
62d04f9
+++ b/lib/matplotlib/tests/test_image.py
62d04f9
@@ -768,7 +768,7 @@ def test_imshow_endianess():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['imshow_masked_interpolation'],
62d04f9
-                  remove_text=True, style='mpl20')
62d04f9
+                  remove_text=True, style='mpl20', tol=0.25)
62d04f9
 def test_imshow_masked_interpolation():
62d04f9
 
62d04f9
     cm = copy(plt.get_cmap('viridis'))
62d04f9
diff --git a/lib/matplotlib/tests/test_mathtext.py b/lib/matplotlib/tests/test_mathtext.py
62d04f9
index cdc1093e1..ac0d8bf05 100644
62d04f9
--- a/lib/matplotlib/tests/test_mathtext.py
62d04f9
+++ b/lib/matplotlib/tests/test_mathtext.py
62d04f9
@@ -173,7 +173,7 @@ def baseline_images(request, fontset, index):
62d04f9
                          ['cm', 'stix', 'stixsans', 'dejavusans',
62d04f9
                           'dejavuserif'])
62d04f9
 @pytest.mark.parametrize('baseline_images', ['mathtext'], indirect=True)
62d04f9
-@image_comparison(baseline_images=None)
62d04f9
+@image_comparison(baseline_images=None, tol=0.31)
62d04f9
 def test_mathtext_rendering(baseline_images, fontset, index, test):
62d04f9
     matplotlib.rcParams['mathtext.fontset'] = fontset
62d04f9
     fig = plt.figure(figsize=(5.25, 0.75))
62d04f9
@@ -187,7 +187,7 @@ def test_mathtext_rendering(baseline_images, fontset, index, test):
62d04f9
                          ['cm', 'stix', 'stixsans', 'dejavusans',
62d04f9
                           'dejavuserif'])
62d04f9
 @pytest.mark.parametrize('baseline_images', ['mathfont'], indirect=True)
62d04f9
-@image_comparison(baseline_images=None, extensions=['png'])
62d04f9
+@image_comparison(baseline_images=None, extensions=['png'], tol=0.3)
62d04f9
 def test_mathfont_rendering(baseline_images, fontset, index, test):
62d04f9
     matplotlib.rcParams['mathtext.fontset'] = fontset
62d04f9
     fig = plt.figure(figsize=(5.25, 0.75))
62d04f9
diff --git a/lib/matplotlib/tests/test_patches.py b/lib/matplotlib/tests/test_patches.py
62d04f9
index ff1abb9c6..cc90e6bb0 100644
62d04f9
--- a/lib/matplotlib/tests/test_patches.py
62d04f9
+++ b/lib/matplotlib/tests/test_patches.py
62d04f9
@@ -266,9 +266,8 @@ def test_wedge_movement():
62d04f9
         assert getattr(w, attr) == new_v
62d04f9
 
62d04f9
 
62d04f9
-# png needs tol>=0.06, pdf tol>=1.617
62d04f9
 @image_comparison(baseline_images=['wedge_range'],
62d04f9
-                  remove_text=True, tol=1.65 if on_win else 0)
62d04f9
+                  remove_text=True)
62d04f9
 def test_wedge_range():
62d04f9
     ax = plt.axes()
62d04f9
 
62d04f9
diff --git a/lib/matplotlib/tests/test_patheffects.py b/lib/matplotlib/tests/test_patheffects.py
62d04f9
index fe7265957..2addc35ed 100644
62d04f9
--- a/lib/matplotlib/tests/test_patheffects.py
62d04f9
+++ b/lib/matplotlib/tests/test_patheffects.py
62d04f9
@@ -121,7 +121,7 @@ def test_SimplePatchShadow_offset():
62d04f9
     assert pe._offset == (4, 5)
62d04f9
 
62d04f9
 
62d04f9
-@image_comparison(baseline_images=['collection'], tol=0.02)
62d04f9
+@image_comparison(baseline_images=['collection'], tol=0.084)
62d04f9
 def test_collection():
62d04f9
     x, y = np.meshgrid(np.linspace(0, 10, 150), np.linspace(-5, 5, 100))
62d04f9
     data = np.sin(x) + np.cos(y)
62d04f9
diff --git a/lib/matplotlib/tests/test_pickle.py b/lib/matplotlib/tests/test_pickle.py
62d04f9
index 89a5a512e..a25961284 100644
62d04f9
--- a/lib/matplotlib/tests/test_pickle.py
62d04f9
+++ b/lib/matplotlib/tests/test_pickle.py
62d04f9
@@ -42,7 +42,7 @@ def test_simple():
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['multi_pickle'],
62d04f9
                   extensions=['png'], remove_text=True,
62d04f9
-                  style='mpl20')
62d04f9
+                  style='mpl20', tol=0.11)
62d04f9
 def test_complete():
62d04f9
     fig = plt.figure('Figure with a label?', figsize=(10, 6))
62d04f9
 
62d04f9
diff --git a/lib/matplotlib/tests/test_quiver.py b/lib/matplotlib/tests/test_quiver.py
62d04f9
index a0e1e674f..ede6bfc64 100644
62d04f9
--- a/lib/matplotlib/tests/test_quiver.py
62d04f9
+++ b/lib/matplotlib/tests/test_quiver.py
62d04f9
@@ -131,7 +131,7 @@ def test_quiver_key_pivot():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['barbs_test_image'],
62d04f9
-                  extensions=['png'], remove_text=True)
62d04f9
+                  extensions=['png'], remove_text=True, tol=0.11)
62d04f9
 def test_barbs():
62d04f9
     x = np.linspace(-5, 5, 5)
62d04f9
     X, Y = np.meshgrid(x, x)
62d04f9
diff --git a/lib/matplotlib/tests/test_streamplot.py b/lib/matplotlib/tests/test_streamplot.py
62d04f9
index 4f70ce861..5bc8184f7 100644
62d04f9
--- a/lib/matplotlib/tests/test_streamplot.py
62d04f9
+++ b/lib/matplotlib/tests/test_streamplot.py
62d04f9
@@ -39,8 +39,7 @@ def test_startpoints():
62d04f9
     plt.plot(start_x, start_y, 'ok')
62d04f9
 
62d04f9
 
62d04f9
-@image_comparison(baseline_images=['streamplot_colormap'],
62d04f9
-                  tol=.02)
62d04f9
+@image_comparison(baseline_images=['streamplot_colormap'])
62d04f9
 def test_colormap():
62d04f9
     X, Y, U, V = velocity_field()
62d04f9
     plt.streamplot(X, Y, U, V, color=U, density=0.6, linewidth=2,
62d04f9
diff --git a/lib/matplotlib/tests/test_transforms.py b/lib/matplotlib/tests/test_transforms.py
62d04f9
index 06985db84..8efaef898 100644
62d04f9
--- a/lib/matplotlib/tests/test_transforms.py
62d04f9
+++ b/lib/matplotlib/tests/test_transforms.py
62d04f9
@@ -74,7 +74,7 @@ def test_external_transform_api():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['pre_transform_data'],
62d04f9
-                  tol=0.08)
62d04f9
+                  tol=0.155)
62d04f9
 def test_pre_transform_plotting():
62d04f9
     # a catch-all for as many as possible plot layouts which handle
62d04f9
     # pre-transforming the data NOTE: The axis range is important in this
62d04f9
diff --git a/lib/mpl_toolkits/tests/test_axisartist_floating_axes.py b/lib/mpl_toolkits/tests/test_axisartist_floating_axes.py
62d04f9
index de7226609..2676fc842 100644
62d04f9
--- a/lib/mpl_toolkits/tests/test_axisartist_floating_axes.py
62d04f9
+++ b/lib/mpl_toolkits/tests/test_axisartist_floating_axes.py
62d04f9
@@ -24,7 +24,7 @@ def test_subplot():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['curvelinear3'],
62d04f9
-                  extensions=['png'], style='default', tol=0.01)
62d04f9
+                  extensions=['png'], style='default', tol=0.02)
62d04f9
 def test_curvelinear3():
62d04f9
     fig = plt.figure(figsize=(5, 5))
62d04f9
     fig.clf()
62d04f9
@@ -80,7 +80,7 @@ def test_curvelinear3():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['curvelinear4'],
62d04f9
-                  extensions=['png'], style='default', tol=0.01)
62d04f9
+                  extensions=['png'], style='default', tol=0.055)
62d04f9
 def test_curvelinear4():
62d04f9
     fig = plt.figure(figsize=(5, 5))
62d04f9
     fig.clf()
62d04f9
diff --git a/lib/mpl_toolkits/tests/test_axisartist_grid_helper_curvelinear.py b/lib/mpl_toolkits/tests/test_axisartist_grid_helper_curvelinear.py
62d04f9
index a7c637428..e22f4ac3e 100644
62d04f9
--- a/lib/mpl_toolkits/tests/test_axisartist_grid_helper_curvelinear.py
62d04f9
+++ b/lib/mpl_toolkits/tests/test_axisartist_grid_helper_curvelinear.py
62d04f9
@@ -19,7 +19,7 @@ from mpl_toolkits.axisartist.grid_helper_curvelinear import \
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['custom_transform'],
62d04f9
-                  extensions=['png'], style='default', tol=0.03)
62d04f9
+                  extensions=['png'], style='default', tol=0.035)
62d04f9
 def test_custom_transform():
62d04f9
     class MyTransform(Transform):
62d04f9
         input_dims = 2
62d04f9
@@ -91,7 +91,7 @@ def test_custom_transform():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['polar_box'],
62d04f9
-                  extensions=['png'], style='default', tol=0.03)
62d04f9
+                  extensions=['png'], style='default', tol=0.08)
62d04f9
 def test_polar_box():
62d04f9
     fig = plt.figure(figsize=(5, 5))
62d04f9
 
62d04f9
@@ -152,7 +152,7 @@ def test_polar_box():
62d04f9
 
62d04f9
 
62d04f9
 @image_comparison(baseline_images=['axis_direction'],
62d04f9
-                  extensions=['png'], style='default', tol=0.03)
62d04f9
+                  extensions=['png'], style='default', tol=0.05)
62d04f9
 def test_axis_direction():
62d04f9
     fig = plt.figure(figsize=(5, 5))
62d04f9
 
62d04f9
diff --git a/lib/mpl_toolkits/tests/test_mplot3d.py b/lib/mpl_toolkits/tests/test_mplot3d.py
62d04f9
index 0a506db92..44e1681fc 100644
62d04f9
--- a/lib/mpl_toolkits/tests/test_mplot3d.py
62d04f9
+++ b/lib/mpl_toolkits/tests/test_mplot3d.py
62d04f9
@@ -225,7 +225,7 @@ def test_text3d():
62d04f9
     ax.set_zlabel('Z axis')
62d04f9
 
62d04f9
 
62d04f9
-@image_comparison(baseline_images=['trisurf3d'], remove_text=True, tol=0.03)
62d04f9
+@image_comparison(baseline_images=['trisurf3d'], remove_text=True, tol=0.05)
62d04f9
 def test_trisurf3d():
62d04f9
     n_angles = 36
62d04f9
     n_radii = 8
62d04f9
@@ -704,7 +704,7 @@ class TestVoxels(object):
62d04f9
     @image_comparison(
62d04f9
         baseline_images=['voxels-xyz'],
62d04f9
         extensions=['png'],
62d04f9
-        tol=0.01
62d04f9
+        tol=0.02
62d04f9
     )
62d04f9
     def test_xyz(self):
62d04f9
         fig, ax = plt.subplots(subplot_kw={"projection": "3d"})
62d04f9
-- 
62d04f9
2.17.1
62d04f9