2019-05-31 05:44:54 +00:00
|
|
|
From 953aea628b7a3d956949aa6ef38b9634b3a57021 Mon Sep 17 00:00:00 2001
|
2017-10-15 22:16:56 +00:00
|
|
|
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
2018-03-31 07:28:44 +00:00
|
|
|
Date: Sat, 31 Mar 2018 00:15:14 -0400
|
2019-05-31 05:44:54 +00:00
|
|
|
Subject: [PATCH 4/4] Increase some tolerances for 32-bit systems.
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
|
|
---
|
2018-06-22 07:50:26 +00:00
|
|
|
lib/matplotlib/testing/decorators.py | 2 +-
|
|
|
|
lib/matplotlib/tests/test_artist.py | 3 +-
|
2018-08-29 03:29:22 +00:00
|
|
|
lib/matplotlib/tests/test_axes.py | 49 ++++++++++---------
|
2018-06-22 07:50:26 +00:00
|
|
|
lib/matplotlib/tests/test_collections.py | 2 +-
|
|
|
|
lib/matplotlib/tests/test_colorbar.py | 11 +++--
|
|
|
|
.../tests/test_constrainedlayout.py | 2 +-
|
2018-08-29 03:29:22 +00:00
|
|
|
lib/matplotlib/tests/test_contour.py | 8 +--
|
|
|
|
lib/matplotlib/tests/test_cycles.py | 3 --
|
|
|
|
lib/matplotlib/tests/test_figure.py | 3 +-
|
2018-06-22 07:50:26 +00:00
|
|
|
lib/matplotlib/tests/test_image.py | 2 +-
|
2018-08-29 03:29:22 +00:00
|
|
|
lib/matplotlib/tests/test_legend.py | 5 +-
|
2018-06-22 07:50:26 +00:00
|
|
|
lib/matplotlib/tests/test_mathtext.py | 4 +-
|
|
|
|
lib/matplotlib/tests/test_patches.py | 3 +-
|
|
|
|
lib/matplotlib/tests/test_patheffects.py | 2 +-
|
|
|
|
lib/matplotlib/tests/test_pickle.py | 2 +-
|
|
|
|
lib/matplotlib/tests/test_quiver.py | 2 +-
|
2018-08-17 21:37:11 +00:00
|
|
|
lib/matplotlib/tests/test_streamplot.py | 2 +-
|
2018-06-22 07:50:26 +00:00
|
|
|
lib/matplotlib/tests/test_transforms.py | 2 +-
|
2018-08-29 03:29:22 +00:00
|
|
|
lib/matplotlib/tests/test_units.py | 1 -
|
2018-06-22 07:50:26 +00:00
|
|
|
.../tests/test_axisartist_floating_axes.py | 4 +-
|
|
|
|
...test_axisartist_grid_helper_curvelinear.py | 6 +--
|
|
|
|
lib/mpl_toolkits/tests/test_mplot3d.py | 4 +-
|
2018-08-29 03:29:22 +00:00
|
|
|
22 files changed, 59 insertions(+), 63 deletions(-)
|
2017-10-15 22:16:56 +00:00
|
|
|
|
2018-03-31 07:28:44 +00:00
|
|
|
diff --git a/lib/matplotlib/testing/decorators.py b/lib/matplotlib/testing/decorators.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index 04d5bcda8..70de0263b 100644
|
2018-03-31 07:28:44 +00:00
|
|
|
--- a/lib/matplotlib/testing/decorators.py
|
|
|
|
+++ b/lib/matplotlib/testing/decorators.py
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -341,7 +341,7 @@ def _pytest_image_comparison(baseline_images, extensions, tol,
|
2018-03-31 07:28:44 +00:00
|
|
|
return decorator
|
|
|
|
|
|
|
|
|
|
|
|
-def image_comparison(baseline_images, extensions=None, tol=0,
|
|
|
|
+def image_comparison(baseline_images, extensions=None, tol=0.1,
|
|
|
|
freetype_version=None, remove_text=False,
|
|
|
|
savefig_kwarg=None,
|
|
|
|
# Default of mpl_test_settings fixture and cleanup too.
|
2017-10-15 22:16:56 +00:00
|
|
|
diff --git a/lib/matplotlib/tests/test_artist.py b/lib/matplotlib/tests/test_artist.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index 9bf15d0b9..5339dd2eb 100644
|
2017-10-15 22:16:56 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_artist.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_artist.py
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -94,7 +94,8 @@ def test_collection_transform_of_none():
|
2017-10-15 22:16:56 +00:00
|
|
|
assert isinstance(c._transOffset, mtransforms.IdentityTransform)
|
|
|
|
|
|
|
|
|
|
|
|
-@image_comparison(baseline_images=["clip_path_clipping"], remove_text=True)
|
|
|
|
+@image_comparison(baseline_images=["clip_path_clipping"], remove_text=True,
|
|
|
|
+ tol=0.28)
|
|
|
|
def test_clipping():
|
|
|
|
exterior = mpath.Path.unit_rectangle().deepcopy()
|
|
|
|
exterior.vertices *= 4
|
|
|
|
diff --git a/lib/matplotlib/tests/test_axes.py b/lib/matplotlib/tests/test_axes.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index 1168ef983..038b7fd98 100644
|
2017-10-15 22:16:56 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_axes.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_axes.py
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -562,7 +562,7 @@ def test_single_point():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
2018-08-17 21:37:11 +00:00
|
|
|
@image_comparison(baseline_images=['single_date'], extensions=['png'],
|
|
|
|
- style='mpl20')
|
|
|
|
+ style='mpl20', tol=1.97)
|
2017-10-15 22:16:56 +00:00
|
|
|
def test_single_date():
|
|
|
|
time1 = [721964.0]
|
|
|
|
data1 = [-65.54]
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -1079,7 +1079,7 @@ def test_fill_between_interpolate():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['fill_between_interpolate_decreasing'],
|
|
|
|
- style='mpl20', remove_text=True)
|
|
|
|
+ style='mpl20', remove_text=True, tol=0.78)
|
|
|
|
def test_fill_between_interpolate_decreasing():
|
|
|
|
p = np.array([724.3, 700, 655])
|
|
|
|
t = np.array([9.4, 7, 2.2])
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -1164,7 +1164,8 @@ def test_pcolormesh():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['pcolormesh_datetime_axis'],
|
2018-08-17 21:37:11 +00:00
|
|
|
- extensions=['png'], remove_text=False, style='mpl20')
|
|
|
|
+ extensions=['png'], remove_text=False, style='mpl20',
|
|
|
|
+ tol=0.19)
|
2017-10-15 22:16:56 +00:00
|
|
|
def test_pcolormesh_datetime_axis():
|
|
|
|
fig = plt.figure()
|
|
|
|
fig.subplots_adjust(hspace=0.4, top=0.98, bottom=.15)
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -1190,7 +1191,8 @@ def test_pcolormesh_datetime_axis():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['pcolor_datetime_axis'],
|
2018-08-17 21:37:11 +00:00
|
|
|
- extensions=['png'], remove_text=False, style='mpl20')
|
|
|
|
+ extensions=['png'], remove_text=False, style='mpl20',
|
|
|
|
+ tol=0.19)
|
2017-10-15 22:16:56 +00:00
|
|
|
def test_pcolor_datetime_axis():
|
|
|
|
fig = plt.figure()
|
|
|
|
fig.subplots_adjust(hspace=0.4, top=0.98, bottom=.15)
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -1247,7 +1249,7 @@ def test_canonical():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['arc_angles'], remove_text=True,
|
|
|
|
- style='default', extensions=['png'])
|
|
|
|
+ style='default', extensions=['png'], tol=0.17)
|
|
|
|
def test_arc_angles():
|
|
|
|
from matplotlib import patches
|
|
|
|
# Ellipse parameters
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -2627,7 +2629,7 @@ def test_boxplot_mod_artist_after_plotting():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
@image_comparison(baseline_images=['violinplot_vert_baseline',
|
|
|
|
'violinplot_vert_baseline'],
|
|
|
|
- extensions=['png'])
|
|
|
|
+ extensions=['png'], tol=0.24)
|
|
|
|
def test_vert_violinplot_baseline():
|
|
|
|
# First 9 digits of frac(sqrt(2))
|
|
|
|
np.random.seed(414213562)
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -2645,7 +2647,7 @@ def test_vert_violinplot_baseline():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['violinplot_vert_showmeans'],
|
|
|
|
- extensions=['png'])
|
|
|
|
+ extensions=['png'], tol=0.23)
|
|
|
|
def test_vert_violinplot_showmeans():
|
|
|
|
ax = plt.axes()
|
|
|
|
# First 9 digits of frac(sqrt(3))
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -2656,7 +2658,7 @@ def test_vert_violinplot_showmeans():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['violinplot_vert_showextrema'],
|
|
|
|
- extensions=['png'])
|
|
|
|
+ extensions=['png'], tol=0.23)
|
|
|
|
def test_vert_violinplot_showextrema():
|
|
|
|
ax = plt.axes()
|
|
|
|
# First 9 digits of frac(sqrt(5))
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -2667,7 +2669,7 @@ def test_vert_violinplot_showextrema():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['violinplot_vert_showmedians'],
|
|
|
|
- extensions=['png'])
|
|
|
|
+ extensions=['png'], tol=0.23)
|
|
|
|
def test_vert_violinplot_showmedians():
|
|
|
|
ax = plt.axes()
|
|
|
|
# First 9 digits of frac(sqrt(7))
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -2678,7 +2680,7 @@ def test_vert_violinplot_showmedians():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['violinplot_vert_showall'],
|
|
|
|
- extensions=['png'])
|
|
|
|
+ extensions=['png'], tol=0.2)
|
|
|
|
def test_vert_violinplot_showall():
|
|
|
|
ax = plt.axes()
|
|
|
|
# First 9 digits of frac(sqrt(11))
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -2689,7 +2691,7 @@ def test_vert_violinplot_showall():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['violinplot_vert_custompoints_10'],
|
|
|
|
- extensions=['png'])
|
|
|
|
+ extensions=['png'], tol=0.22)
|
|
|
|
def test_vert_violinplot_custompoints_10():
|
|
|
|
ax = plt.axes()
|
|
|
|
# First 9 digits of frac(sqrt(13))
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -2700,7 +2702,7 @@ def test_vert_violinplot_custompoints_10():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['violinplot_vert_custompoints_200'],
|
|
|
|
- extensions=['png'])
|
|
|
|
+ extensions=['png'], tol=0.22)
|
|
|
|
def test_vert_violinplot_custompoints_200():
|
|
|
|
ax = plt.axes()
|
|
|
|
# First 9 digits of frac(sqrt(17))
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -2711,7 +2713,7 @@ def test_vert_violinplot_custompoints_200():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['violinplot_horiz_baseline'],
|
|
|
|
- extensions=['png'])
|
|
|
|
+ extensions=['png'], tol=0.2)
|
|
|
|
def test_horiz_violinplot_baseline():
|
|
|
|
ax = plt.axes()
|
|
|
|
# First 9 digits of frac(sqrt(19))
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -2722,7 +2724,7 @@ def test_horiz_violinplot_baseline():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['violinplot_horiz_showmedians'],
|
|
|
|
- extensions=['png'])
|
|
|
|
+ extensions=['png'], tol=0.23)
|
|
|
|
def test_horiz_violinplot_showmedians():
|
|
|
|
ax = plt.axes()
|
|
|
|
# First 9 digits of frac(sqrt(23))
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -2733,7 +2735,7 @@ def test_horiz_violinplot_showmedians():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['violinplot_horiz_showmeans'],
|
|
|
|
- extensions=['png'])
|
|
|
|
+ extensions=['png'], tol=0.25)
|
|
|
|
def test_horiz_violinplot_showmeans():
|
|
|
|
ax = plt.axes()
|
|
|
|
# First 9 digits of frac(sqrt(29))
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -2744,7 +2746,7 @@ def test_horiz_violinplot_showmeans():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['violinplot_horiz_showextrema'],
|
|
|
|
- extensions=['png'])
|
|
|
|
+ extensions=['png'], tol=0.2)
|
|
|
|
def test_horiz_violinplot_showextrema():
|
|
|
|
ax = plt.axes()
|
|
|
|
# First 9 digits of frac(sqrt(31))
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -2755,7 +2757,7 @@ def test_horiz_violinplot_showextrema():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['violinplot_horiz_showall'],
|
|
|
|
- extensions=['png'])
|
|
|
|
+ extensions=['png'], tol=0.19)
|
|
|
|
def test_horiz_violinplot_showall():
|
|
|
|
ax = plt.axes()
|
|
|
|
# First 9 digits of frac(sqrt(37))
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -2766,7 +2768,7 @@ def test_horiz_violinplot_showall():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['violinplot_horiz_custompoints_10'],
|
|
|
|
- extensions=['png'])
|
|
|
|
+ extensions=['png'], tol=0.22)
|
|
|
|
def test_horiz_violinplot_custompoints_10():
|
|
|
|
ax = plt.axes()
|
|
|
|
# First 9 digits of frac(sqrt(41))
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -2777,7 +2779,7 @@ def test_horiz_violinplot_custompoints_10():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['violinplot_horiz_custompoints_200'],
|
|
|
|
- extensions=['png'])
|
|
|
|
+ extensions=['png'], tol=0.22)
|
|
|
|
def test_horiz_violinplot_custompoints_200():
|
|
|
|
ax = plt.axes()
|
|
|
|
# First 9 digits of frac(sqrt(43))
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -3501,8 +3503,7 @@ def test_vertex_markers():
|
2018-08-29 03:29:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['vline_hline_zorder',
|
|
|
|
- 'errorbar_zorder'],
|
|
|
|
- tol={'aarch64': 0.02}.get(platform.machine(), 0.0))
|
|
|
|
+ 'errorbar_zorder'])
|
|
|
|
def test_eb_line_zorder():
|
|
|
|
x = list(range(10))
|
|
|
|
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -4182,7 +4183,7 @@ def test_psd_noise():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['csd_freqs'], remove_text=True,
|
2018-08-14 01:27:10 +00:00
|
|
|
- extensions=['png'], tol=0.002)
|
2017-10-15 22:16:56 +00:00
|
|
|
+ extensions=['png'], tol=0.21)
|
|
|
|
def test_csd_freqs():
|
|
|
|
'''test axes.csd with sinusoidal stimuli'''
|
|
|
|
n = 10000
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -5100,7 +5101,7 @@ def test_rc_spines():
|
2018-03-31 07:28:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['rc_grid'], extensions=['png'],
|
|
|
|
- savefig_kwarg={'dpi': 40})
|
|
|
|
+ savefig_kwarg={'dpi': 40}, tol=0.2)
|
|
|
|
def test_rc_grid():
|
|
|
|
fig = plt.figure()
|
|
|
|
rc_dict0 = {
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -5656,7 +5657,7 @@ def test_date_timezone_y():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['date_timezone_x_and_y'],
|
|
|
|
- extensions=['png'])
|
|
|
|
+ extensions=['png'], tol=3.05)
|
|
|
|
def test_date_timezone_x_and_y():
|
|
|
|
# Tests issue 5575
|
2018-08-17 21:37:11 +00:00
|
|
|
UTC = datetime.timezone.utc
|
2017-10-15 22:16:56 +00:00
|
|
|
diff --git a/lib/matplotlib/tests/test_collections.py b/lib/matplotlib/tests/test_collections.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index c12ed7004..e03a2b326 100644
|
2017-10-15 22:16:56 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_collections.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_collections.py
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -466,7 +466,7 @@ def test_EllipseCollection():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['polycollection_close'],
|
|
|
|
- extensions=['png'], remove_text=True)
|
|
|
|
+ extensions=['png'], remove_text=True, tol=0.45)
|
|
|
|
def test_polycollection_close():
|
|
|
|
from mpl_toolkits.mplot3d import Axes3D
|
|
|
|
|
|
|
|
diff --git a/lib/matplotlib/tests/test_colorbar.py b/lib/matplotlib/tests/test_colorbar.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index c65ad02c3..79deb249c 100644
|
2017-10-15 22:16:56 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_colorbar.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_colorbar.py
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -97,7 +97,7 @@ def _colorbar_extension_length(spacing):
|
2017-10-15 22:16:56 +00:00
|
|
|
@image_comparison(
|
|
|
|
baseline_images=['colorbar_extensions_shape_uniform',
|
|
|
|
'colorbar_extensions_shape_proportional'],
|
|
|
|
- extensions=['png'])
|
|
|
|
+ extensions=['png'], tol=0.16)
|
|
|
|
def test_colorbar_extension_shape():
|
|
|
|
'''Test rectangular colorbar extensions.'''
|
|
|
|
# Create figures for uniform and proportionally spaced colorbars.
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -107,7 +107,7 @@ def test_colorbar_extension_shape():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
@image_comparison(baseline_images=['colorbar_extensions_uniform',
|
|
|
|
'colorbar_extensions_proportional'],
|
|
|
|
- extensions=['png'])
|
|
|
|
+ extensions=['png'], tol=0.25)
|
|
|
|
def test_colorbar_extension_length():
|
|
|
|
'''Test variable length colorbar extensions.'''
|
|
|
|
# Create figures for uniform and proportionally spaced colorbars.
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -121,7 +121,7 @@ def test_colorbar_extension_length():
|
2017-10-15 22:16:56 +00:00
|
|
|
'cbar_sharing',
|
|
|
|
],
|
|
|
|
extensions=['png'], remove_text=True,
|
|
|
|
- savefig_kwarg={'dpi': 40})
|
|
|
|
+ savefig_kwarg={'dpi': 40}, tol=0.17)
|
|
|
|
def test_colorbar_positioning():
|
|
|
|
data = np.arange(1200).reshape(30, 40)
|
|
|
|
levels = [0, 200, 400, 600, 800, 1000, 1200]
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -175,7 +175,7 @@ def test_colorbar_positioning():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
@image_comparison(baseline_images=['cbar_with_subplots_adjust'],
|
|
|
|
extensions=['png'], remove_text=True,
|
|
|
|
- savefig_kwarg={'dpi': 40})
|
|
|
|
+ savefig_kwarg={'dpi': 40}, tol=0.17)
|
|
|
|
def test_gridspec_make_colorbar():
|
|
|
|
plt.figure()
|
|
|
|
data = np.arange(1200).reshape(30, 40)
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -233,7 +233,8 @@ def test_colorbarbase():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
@image_comparison(
|
|
|
|
baseline_images=['colorbar_closed_patch'],
|
|
|
|
- remove_text=True)
|
|
|
|
+ remove_text=True,
|
|
|
|
+ tol=0.22)
|
|
|
|
def test_colorbar_closed_patch():
|
|
|
|
fig = plt.figure(figsize=(8, 6))
|
|
|
|
ax1 = fig.add_axes([0.05, 0.85, 0.9, 0.1])
|
2018-03-31 07:28:44 +00:00
|
|
|
diff --git a/lib/matplotlib/tests/test_constrainedlayout.py b/lib/matplotlib/tests/test_constrainedlayout.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index df3e5cf18..c8e29939e 100644
|
2018-03-31 07:28:44 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_constrainedlayout.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_constrainedlayout.py
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -246,7 +246,7 @@ def test_constrained_layout12():
|
2018-03-31 07:28:44 +00:00
|
|
|
ax.set_xlabel('x-label')
|
|
|
|
|
|
|
|
|
|
|
|
-@image_comparison(baseline_images=['constrained_layout13'], tol=2.e-2,
|
|
|
|
+@image_comparison(baseline_images=['constrained_layout13'], tol=3.e-2,
|
|
|
|
extensions=['png'])
|
|
|
|
def test_constrained_layout13():
|
|
|
|
'Test that padding works.'
|
2017-10-15 22:16:56 +00:00
|
|
|
diff --git a/lib/matplotlib/tests/test_contour.py b/lib/matplotlib/tests/test_contour.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index d78dcb1ff..ad39426e2 100644
|
2017-10-15 22:16:56 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_contour.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_contour.py
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -226,7 +226,8 @@ def test_given_colors_levels_and_extends():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['contour_datetime_axis'],
|
2018-08-17 21:37:11 +00:00
|
|
|
- extensions=['png'], remove_text=False, style='mpl20')
|
|
|
|
+ extensions=['png'], remove_text=False, style='mpl20',
|
|
|
|
+ tol=0.18)
|
2017-10-15 22:16:56 +00:00
|
|
|
def test_contour_datetime_axis():
|
|
|
|
fig = plt.figure()
|
|
|
|
fig.subplots_adjust(hspace=0.4, top=0.98, bottom=.15)
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -252,7 +253,8 @@ def test_contour_datetime_axis():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['contour_test_label_transforms'],
|
2018-08-17 21:37:11 +00:00
|
|
|
- extensions=['png'], remove_text=True, style='mpl20')
|
|
|
|
+ extensions=['png'], remove_text=True, style='mpl20',
|
|
|
|
+ tol=1.38)
|
2017-10-15 22:16:56 +00:00
|
|
|
def test_labels():
|
|
|
|
# Adapted from pylab_examples example code: contour_demo.py
|
|
|
|
# see issues #2475, #2843, and #2818 for explanation
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -283,7 +285,7 @@ def test_labels():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
@image_comparison(baseline_images=['contour_corner_mask_False',
|
|
|
|
'contour_corner_mask_True'],
|
|
|
|
- extensions=['png'], remove_text=True)
|
|
|
|
+ extensions=['png'], remove_text=True, tol=0.19)
|
|
|
|
def test_corner_mask():
|
|
|
|
n = 60
|
|
|
|
mask_level = 0.95
|
2018-08-29 03:29:22 +00:00
|
|
|
diff --git a/lib/matplotlib/tests/test_cycles.py b/lib/matplotlib/tests/test_cycles.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index 1254f3c7c..de11f6103 100644
|
2018-08-29 03:29:22 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_cycles.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_cycles.py
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -9,7 +9,6 @@ from cycler import cycler
|
2018-08-29 03:29:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['color_cycle_basic'], remove_text=True,
|
|
|
|
- tol={'aarch64': 0.02}.get(platform.machine(), 0.0),
|
|
|
|
extensions=['png'])
|
|
|
|
def test_colorcycle_basic():
|
|
|
|
fig, ax = plt.subplots()
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -27,7 +26,6 @@ def test_colorcycle_basic():
|
2018-08-29 03:29:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['marker_cycle', 'marker_cycle'],
|
|
|
|
- tol={'aarch64': 0.02}.get(platform.machine(), 0.0),
|
|
|
|
remove_text=True, extensions=['png'])
|
|
|
|
def test_marker_cycle():
|
|
|
|
fig, ax = plt.subplots()
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -61,7 +59,6 @@ def test_marker_cycle():
|
2018-08-29 03:29:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['lineprop_cycle_basic'], remove_text=True,
|
|
|
|
- tol={'aarch64': 0.02}.get(platform.machine(), 0.0),
|
|
|
|
extensions=['png'])
|
|
|
|
def test_linestylecycle_basic():
|
|
|
|
fig, ax = plt.subplots()
|
|
|
|
diff --git a/lib/matplotlib/tests/test_figure.py b/lib/matplotlib/tests/test_figure.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index 6ecb3edbe..47aff1b74 100644
|
2018-08-29 03:29:22 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_figure.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_figure.py
|
|
|
|
@@ -13,8 +13,7 @@ import numpy as np
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
|
|
-@image_comparison(baseline_images=['figure_align_labels'],
|
|
|
|
- tol={'aarch64': 0.02}.get(platform.machine(), 0.0))
|
|
|
|
+@image_comparison(baseline_images=['figure_align_labels'])
|
|
|
|
def test_align_labels():
|
|
|
|
# Check the figure.align_labels() command
|
|
|
|
fig = plt.figure(tight_layout=True)
|
2017-10-15 22:16:56 +00:00
|
|
|
diff --git a/lib/matplotlib/tests/test_image.py b/lib/matplotlib/tests/test_image.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index ae803000d..0f2a83b0f 100644
|
2017-10-15 22:16:56 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_image.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_image.py
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -810,7 +810,7 @@ def test_imshow_endianess():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['imshow_masked_interpolation'],
|
2018-08-17 21:37:11 +00:00
|
|
|
- tol={'aarch64': 0.02}.get(platform.machine(), 0.0),
|
|
|
|
+ tol=0.25,
|
|
|
|
remove_text=True, style='mpl20')
|
2017-10-15 22:16:56 +00:00
|
|
|
def test_imshow_masked_interpolation():
|
|
|
|
|
2018-08-29 03:29:22 +00:00
|
|
|
diff --git a/lib/matplotlib/tests/test_legend.py b/lib/matplotlib/tests/test_legend.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index b4bcecde8..45228e16c 100644
|
2018-08-29 03:29:22 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_legend.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_legend.py
|
|
|
|
@@ -108,7 +108,6 @@ def test_multiple_keys():
|
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['rgba_alpha'],
|
|
|
|
- tol={'aarch64': 0.02}.get(platform.machine(), 0.0),
|
|
|
|
extensions=['png'], remove_text=True)
|
|
|
|
def test_alpha_rgba():
|
|
|
|
import matplotlib.pyplot as plt
|
|
|
|
@@ -120,7 +119,6 @@ def test_alpha_rgba():
|
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['rcparam_alpha'],
|
|
|
|
- tol={'aarch64': 0.02}.get(platform.machine(), 0.0),
|
|
|
|
extensions=['png'], remove_text=True)
|
|
|
|
def test_alpha_rcparam():
|
|
|
|
import matplotlib.pyplot as plt
|
|
|
|
@@ -148,8 +146,7 @@ def test_fancy():
|
|
|
|
ncol=2, shadow=True, title="My legend", numpoints=1)
|
|
|
|
|
|
|
|
|
|
|
|
-@image_comparison(baseline_images=['framealpha'], remove_text=True,
|
|
|
|
- tol={'aarch64': 0.02}.get(platform.machine(), 0.0))
|
|
|
|
+@image_comparison(baseline_images=['framealpha'], remove_text=True)
|
|
|
|
def test_framealpha():
|
|
|
|
x = np.linspace(1, 100, 100)
|
|
|
|
y = x
|
2018-03-31 07:28:44 +00:00
|
|
|
diff --git a/lib/matplotlib/tests/test_mathtext.py b/lib/matplotlib/tests/test_mathtext.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index bbb442638..b5d291c87 100644
|
2018-03-31 07:28:44 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_mathtext.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_mathtext.py
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -173,7 +173,7 @@ def baseline_images(request, fontset, index):
|
2018-03-31 07:28:44 +00:00
|
|
|
['cm', 'stix', 'stixsans', 'dejavusans',
|
|
|
|
'dejavuserif'])
|
|
|
|
@pytest.mark.parametrize('baseline_images', ['mathtext'], indirect=True)
|
|
|
|
-@image_comparison(baseline_images=None)
|
|
|
|
+@image_comparison(baseline_images=None, tol=0.31)
|
2019-05-31 05:44:54 +00:00
|
|
|
def test_mathtext_rendering(baseline_images, fontset, index, test, recwarn):
|
2018-03-31 07:28:44 +00:00
|
|
|
matplotlib.rcParams['mathtext.fontset'] = fontset
|
|
|
|
fig = plt.figure(figsize=(5.25, 0.75))
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -187,7 +187,7 @@ def test_mathtext_rendering(baseline_images, fontset, index, test, recwarn):
|
2018-03-31 07:28:44 +00:00
|
|
|
['cm', 'stix', 'stixsans', 'dejavusans',
|
|
|
|
'dejavuserif'])
|
|
|
|
@pytest.mark.parametrize('baseline_images', ['mathfont'], indirect=True)
|
|
|
|
-@image_comparison(baseline_images=None, extensions=['png'])
|
|
|
|
+@image_comparison(baseline_images=None, extensions=['png'], tol=0.3)
|
2019-05-31 05:44:54 +00:00
|
|
|
def test_mathfont_rendering(baseline_images, fontset, index, test, recwarn):
|
2018-03-31 07:28:44 +00:00
|
|
|
matplotlib.rcParams['mathtext.fontset'] = fontset
|
|
|
|
fig = plt.figure(figsize=(5.25, 0.75))
|
|
|
|
diff --git a/lib/matplotlib/tests/test_patches.py b/lib/matplotlib/tests/test_patches.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index 13c5dd1a8..f071bffeb 100644
|
2018-03-31 07:28:44 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_patches.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_patches.py
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -259,9 +259,8 @@ def test_wedge_movement():
|
2018-03-31 07:28:44 +00:00
|
|
|
assert getattr(w, attr) == new_v
|
|
|
|
|
|
|
|
|
|
|
|
-# png needs tol>=0.06, pdf tol>=1.617
|
|
|
|
@image_comparison(baseline_images=['wedge_range'],
|
|
|
|
- remove_text=True, tol=1.65 if on_win else 0)
|
|
|
|
+ remove_text=True)
|
|
|
|
def test_wedge_range():
|
|
|
|
ax = plt.axes()
|
|
|
|
|
2018-01-24 08:02:57 +00:00
|
|
|
diff --git a/lib/matplotlib/tests/test_patheffects.py b/lib/matplotlib/tests/test_patheffects.py
|
2018-08-17 21:37:11 +00:00
|
|
|
index 6e80d8d98..0f158eb9e 100644
|
2018-01-24 08:02:57 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_patheffects.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_patheffects.py
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -119,7 +119,7 @@ def test_SimplePatchShadow_offset():
|
2018-01-24 08:02:57 +00:00
|
|
|
assert pe._offset == (4, 5)
|
|
|
|
|
|
|
|
|
2018-08-17 21:37:11 +00:00
|
|
|
-@image_comparison(baseline_images=['collection'], tol=0.02, style='mpl20')
|
|
|
|
+@image_comparison(baseline_images=['collection'], tol=0.084, style='mpl20')
|
2018-01-24 08:02:57 +00:00
|
|
|
def test_collection():
|
|
|
|
x, y = np.meshgrid(np.linspace(0, 10, 150), np.linspace(-5, 5, 100))
|
|
|
|
data = np.sin(x) + np.cos(y)
|
2017-10-15 22:16:56 +00:00
|
|
|
diff --git a/lib/matplotlib/tests/test_pickle.py b/lib/matplotlib/tests/test_pickle.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index d8ee5ffa7..f43a7fd34 100644
|
2017-10-15 22:16:56 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_pickle.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_pickle.py
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -41,7 +41,7 @@ def test_simple():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
@image_comparison(baseline_images=['multi_pickle'],
|
|
|
|
extensions=['png'], remove_text=True,
|
2018-08-17 21:37:11 +00:00
|
|
|
- tol={'aarch64': 0.02}.get(platform.machine(), 0.0),
|
|
|
|
+ tol=0.11,
|
|
|
|
style='mpl20')
|
2017-10-15 22:16:56 +00:00
|
|
|
def test_complete():
|
|
|
|
fig = plt.figure('Figure with a label?', figsize=(10, 6))
|
|
|
|
diff --git a/lib/matplotlib/tests/test_quiver.py b/lib/matplotlib/tests/test_quiver.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index eab049d91..c3708890b 100644
|
2017-10-15 22:16:56 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_quiver.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_quiver.py
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -155,7 +155,7 @@ def test_quiver_key_xy():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['barbs_test_image'],
|
|
|
|
- extensions=['png'], remove_text=True)
|
|
|
|
+ extensions=['png'], remove_text=True, tol=0.11)
|
|
|
|
def test_barbs():
|
|
|
|
x = np.linspace(-5, 5, 5)
|
|
|
|
X, Y = np.meshgrid(x, x)
|
2018-03-31 07:28:44 +00:00
|
|
|
diff --git a/lib/matplotlib/tests/test_streamplot.py b/lib/matplotlib/tests/test_streamplot.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index 6007c9b9a..736105a56 100644
|
2018-03-31 07:28:44 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_streamplot.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_streamplot.py
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -40,7 +40,7 @@ def test_startpoints():
|
2018-03-31 07:28:44 +00:00
|
|
|
|
|
|
|
|
2018-08-17 21:37:11 +00:00
|
|
|
@image_comparison(baseline_images=['streamplot_colormap'],
|
|
|
|
- tol=.04, remove_text=True, style='mpl20')
|
|
|
|
+ remove_text=True, style='mpl20')
|
2018-03-31 07:28:44 +00:00
|
|
|
def test_colormap():
|
|
|
|
X, Y, U, V = velocity_field()
|
|
|
|
plt.streamplot(X, Y, U, V, color=U, density=0.6, linewidth=2,
|
2017-10-15 22:16:56 +00:00
|
|
|
diff --git a/lib/matplotlib/tests/test_transforms.py b/lib/matplotlib/tests/test_transforms.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index f36f480af..2b773b042 100644
|
2017-10-15 22:16:56 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_transforms.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_transforms.py
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -70,7 +70,7 @@ def test_external_transform_api():
|
2017-10-15 22:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['pre_transform_data'],
|
2018-08-17 21:37:11 +00:00
|
|
|
- tol=0.08, remove_text=True, style='mpl20')
|
|
|
|
+ tol=0.155, remove_text=True, style='mpl20')
|
2017-10-15 22:16:56 +00:00
|
|
|
def test_pre_transform_plotting():
|
|
|
|
# a catch-all for as many as possible plot layouts which handle
|
|
|
|
# pre-transforming the data NOTE: The axis range is important in this
|
2018-08-29 03:29:22 +00:00
|
|
|
diff --git a/lib/matplotlib/tests/test_units.py b/lib/matplotlib/tests/test_units.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index 7d0f38a70..a40d81a4f 100644
|
2018-08-29 03:29:22 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_units.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_units.py
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -73,7 +73,6 @@ def quantity_converter():
|
2018-08-29 03:29:22 +00:00
|
|
|
# Tests that the conversion machinery works properly for classes that
|
|
|
|
# work as a facade over numpy arrays (like pint)
|
|
|
|
@image_comparison(baseline_images=['plot_pint'],
|
|
|
|
- tol={'aarch64': 0.02}.get(platform.machine(), 0.0),
|
|
|
|
extensions=['png'], remove_text=False, style='mpl20')
|
2018-10-31 06:47:13 +00:00
|
|
|
def test_numpy_facade(quantity_converter):
|
|
|
|
# Register the class
|
2018-03-31 07:28:44 +00:00
|
|
|
diff --git a/lib/mpl_toolkits/tests/test_axisartist_floating_axes.py b/lib/mpl_toolkits/tests/test_axisartist_floating_axes.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index 7105a6480..a5fecba1b 100644
|
2018-03-31 07:28:44 +00:00
|
|
|
--- a/lib/mpl_toolkits/tests/test_axisartist_floating_axes.py
|
|
|
|
+++ b/lib/mpl_toolkits/tests/test_axisartist_floating_axes.py
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -19,7 +19,7 @@ def test_subplot():
|
2018-03-31 07:28:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['curvelinear3'],
|
|
|
|
- extensions=['png'], style='default', tol=0.01)
|
|
|
|
+ extensions=['png'], style='default', tol=0.02)
|
|
|
|
def test_curvelinear3():
|
|
|
|
fig = plt.figure(figsize=(5, 5))
|
2019-05-31 05:44:54 +00:00
|
|
|
|
|
|
|
@@ -74,7 +74,7 @@ def test_curvelinear3():
|
2018-03-31 07:28:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['curvelinear4'],
|
2018-08-17 21:37:11 +00:00
|
|
|
- extensions=['png'], style='default', tol=0.015)
|
2018-06-22 07:50:26 +00:00
|
|
|
+ extensions=['png'], style='default', tol=0.055)
|
2018-03-31 07:28:44 +00:00
|
|
|
def test_curvelinear4():
|
|
|
|
fig = plt.figure(figsize=(5, 5))
|
2019-05-31 05:44:54 +00:00
|
|
|
|
2018-03-31 07:28:44 +00:00
|
|
|
diff --git a/lib/mpl_toolkits/tests/test_axisartist_grid_helper_curvelinear.py b/lib/mpl_toolkits/tests/test_axisartist_grid_helper_curvelinear.py
|
2018-10-31 06:47:13 +00:00
|
|
|
index 32e1c884d..2b38866c5 100644
|
2018-03-31 07:28:44 +00:00
|
|
|
--- a/lib/mpl_toolkits/tests/test_axisartist_grid_helper_curvelinear.py
|
|
|
|
+++ b/lib/mpl_toolkits/tests/test_axisartist_grid_helper_curvelinear.py
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -17,7 +17,7 @@ from mpl_toolkits.axisartist.grid_helper_curvelinear import \
|
2018-06-22 07:50:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['custom_transform'],
|
|
|
|
- extensions=['png'], style='default', tol=0.03)
|
|
|
|
+ extensions=['png'], style='default', tol=0.035)
|
|
|
|
def test_custom_transform():
|
|
|
|
class MyTransform(Transform):
|
|
|
|
input_dims = 2
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -85,7 +85,7 @@ def test_custom_transform():
|
2018-03-31 07:28:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['polar_box'],
|
2018-08-17 21:37:11 +00:00
|
|
|
- tol={'aarch64': 0.04}.get(platform.machine(), 0.03),
|
|
|
|
+ tol=0.08,
|
|
|
|
extensions=['png'], style='default')
|
2018-03-31 07:28:44 +00:00
|
|
|
def test_polar_box():
|
|
|
|
fig = plt.figure(figsize=(5, 5))
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -147,7 +147,7 @@ def test_polar_box():
|
2018-03-31 07:28:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
@image_comparison(baseline_images=['axis_direction'],
|
|
|
|
- extensions=['png'], style='default', tol=0.03)
|
|
|
|
+ extensions=['png'], style='default', tol=0.05)
|
|
|
|
def test_axis_direction():
|
|
|
|
fig = plt.figure(figsize=(5, 5))
|
|
|
|
|
2017-10-15 22:16:56 +00:00
|
|
|
diff --git a/lib/mpl_toolkits/tests/test_mplot3d.py b/lib/mpl_toolkits/tests/test_mplot3d.py
|
2019-05-31 05:44:54 +00:00
|
|
|
index 4bfb6f8ff..a6eee9ff6 100644
|
2017-10-15 22:16:56 +00:00
|
|
|
--- a/lib/mpl_toolkits/tests/test_mplot3d.py
|
|
|
|
+++ b/lib/mpl_toolkits/tests/test_mplot3d.py
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -269,7 +269,7 @@ def test_text3d():
|
2017-10-15 22:16:56 +00:00
|
|
|
ax.set_zlabel('Z axis')
|
|
|
|
|
|
|
|
|
|
|
|
-@image_comparison(baseline_images=['trisurf3d'], remove_text=True, tol=0.03)
|
|
|
|
+@image_comparison(baseline_images=['trisurf3d'], remove_text=True, tol=0.05)
|
|
|
|
def test_trisurf3d():
|
|
|
|
n_angles = 36
|
|
|
|
n_radii = 8
|
2019-05-31 05:44:54 +00:00
|
|
|
@@ -778,7 +778,7 @@ class TestVoxels(object):
|
2018-03-31 07:28:44 +00:00
|
|
|
@image_comparison(
|
|
|
|
baseline_images=['voxels-xyz'],
|
|
|
|
extensions=['png'],
|
|
|
|
- tol=0.01
|
|
|
|
+ tol=0.02
|
|
|
|
)
|
|
|
|
def test_xyz(self):
|
|
|
|
fig, ax = plt.subplots(subplot_kw={"projection": "3d"})
|
2017-10-15 22:16:56 +00:00
|
|
|
--
|
2019-05-31 05:44:54 +00:00
|
|
|
2.21.0
|
2017-10-15 22:16:56 +00:00
|
|
|
|