2018-09-18 08:51:42 +00:00
|
|
|
From a9c30f31914db1afc25a7e56ab0a02633b7b1f37 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
|
|
|
|
Subject: [PATCH 3/3] 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
|
2018-08-17 21:37:11 +00:00
|
|
|
index 85b8d5e87..f3fc47c68 100644
|
2018-03-31 07:28:44 +00:00
|
|
|
--- a/lib/matplotlib/testing/decorators.py
|
|
|
|
+++ b/lib/matplotlib/testing/decorators.py
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -338,7 +338,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
|
2018-08-17 21:37:11 +00:00
|
|
|
index 283db9abe..2ae11142c 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
|
2018-09-18 08:51:42 +00:00
|
|
|
index 6afed91f3..e931e7a4a 100644
|
2017-10-15 22:16:56 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_axes.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_axes.py
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -553,7 +553,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]
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -1027,7 +1027,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])
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -1109,7 +1109,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)
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -1135,7 +1136,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)
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -1192,7 +1194,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
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -2533,7 +2535,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)
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -2551,7 +2553,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))
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -2562,7 +2564,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))
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -2573,7 +2575,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))
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -2584,7 +2586,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))
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -2595,7 +2597,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))
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -2606,7 +2608,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))
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -2617,7 +2619,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))
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -2628,7 +2630,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))
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -2639,7 +2641,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))
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -2650,7 +2652,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))
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -2661,7 +2663,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))
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -2672,7 +2674,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))
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -2683,7 +2685,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))
|
2018-09-18 08:51:42 +00:00
|
|
|
@@ -3347,8 +3349,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))
|
|
|
|
|
2018-09-18 08:51:42 +00:00
|
|
|
@@ -4028,7 +4029,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
|
2018-09-18 08:51:42 +00:00
|
|
|
@@ -4921,7 +4922,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 = {
|
2018-09-18 08:51:42 +00:00
|
|
|
@@ -5440,7 +5441,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
|
2018-08-17 21:37:11 +00:00
|
|
|
index 6812ee1ad..5e5f19aac 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
|
2018-09-18 08:51:42 +00:00
|
|
|
index 56a829418..949eaf1b7 100644
|
2017-10-15 22:16:56 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_colorbar.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_colorbar.py
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -93,7 +93,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.
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -103,7 +103,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.
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -117,7 +117,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]
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -171,7 +171,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)
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -230,7 +230,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
|
2018-08-17 21:37:11 +00:00
|
|
|
index 0803504ce..b3a615d5a 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
|
2018-08-29 03:29:22 +00:00
|
|
|
index 9868f4023..d8a490794 100644
|
2017-10-15 22:16:56 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_contour.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_contour.py
|
2018-08-29 03:29:22 +00:00
|
|
|
@@ -227,7 +227,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)
|
2018-08-29 03:29:22 +00:00
|
|
|
@@ -253,7 +254,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
|
2018-08-29 03:29:22 +00:00
|
|
|
@@ -284,7 +286,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
|
|
|
|
index 8184d3eee..5a067f8e0 100644
|
|
|
|
--- a/lib/matplotlib/tests/test_cycles.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_cycles.py
|
|
|
|
@@ -10,7 +10,6 @@ from cycler import cycler
|
|
|
|
|
|
|
|
|
|
|
|
@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()
|
|
|
|
@@ -28,7 +27,6 @@ def test_colorcycle_basic():
|
|
|
|
|
|
|
|
|
|
|
|
@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()
|
|
|
|
@@ -62,7 +60,6 @@ def test_marker_cycle():
|
|
|
|
|
|
|
|
|
|
|
|
@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
|
|
|
|
index 7cb5af621..d7d5ba2f0 100644
|
|
|
|
--- 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
|
2018-08-17 21:37:11 +00:00
|
|
|
index 893108258..b409e9453 100644
|
2017-10-15 22:16:56 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_image.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_image.py
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -757,7 +757,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
|
2018-09-18 08:51:42 +00:00
|
|
|
index d508d6f41..69286069d 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
|
2018-08-17 21:37:11 +00:00
|
|
|
index a05c8b3c8..b6f11281f 100644
|
2018-03-31 07:28:44 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_mathtext.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_mathtext.py
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -169,7 +169,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)
|
|
|
|
def test_mathtext_rendering(baseline_images, fontset, index, test):
|
|
|
|
matplotlib.rcParams['mathtext.fontset'] = fontset
|
|
|
|
fig = plt.figure(figsize=(5.25, 0.75))
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -183,7 +183,7 @@ def test_mathtext_rendering(baseline_images, fontset, index, test):
|
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)
|
|
|
|
def test_mathfont_rendering(baseline_images, fontset, index, test):
|
|
|
|
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
|
2018-08-17 21:37:11 +00:00
|
|
|
index 89a77e258..2e5c16f75 100644
|
2018-03-31 07:28:44 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_patches.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_patches.py
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -260,9 +260,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
|
2018-08-17 21:37:11 +00:00
|
|
|
index 9cb806c6f..c0ccf5f8c 100644
|
2017-10-15 22:16:56 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_pickle.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_pickle.py
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -44,7 +44,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
|
2018-08-17 21:37:11 +00:00
|
|
|
index 4470e02fa..70aa1e718 100644
|
2017-10-15 22:16:56 +00:00
|
|
|
--- a/lib/matplotlib/tests/test_quiver.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_quiver.py
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -130,7 +130,7 @@ def test_quiver_key_pivot():
|
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
|
2018-08-17 21:37:11 +00:00
|
|
|
index e261513df..907841494 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
|
2018-08-17 21:37:11 +00:00
|
|
|
index 6275d5b54..a5c03f0a3 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
|
|
|
|
index 20840d7b8..80744294d 100644
|
|
|
|
--- a/lib/matplotlib/tests/test_units.py
|
|
|
|
+++ b/lib/matplotlib/tests/test_units.py
|
|
|
|
@@ -41,7 +41,6 @@ class Quantity(object):
|
|
|
|
# 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')
|
|
|
|
def test_numpy_facade():
|
|
|
|
# Create an instance of the conversion interface and
|
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
|
2018-08-17 21:37:11 +00:00
|
|
|
index 929c0368a..e6e5ca1ff 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
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -21,7 +21,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))
|
|
|
|
fig.clf()
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -77,7 +77,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))
|
|
|
|
fig.clf()
|
|
|
|
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-08-17 21:37:11 +00:00
|
|
|
index 0f5e86322..590430315 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
|
2018-08-17 21:37:11 +00:00
|
|
|
index 8d2815408..816a26c35 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
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -241,7 +241,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
|
2018-08-17 21:37:11 +00:00
|
|
|
@@ -720,7 +720,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
|
|
|
--
|
2018-06-22 07:50:26 +00:00
|
|
|
2.17.1
|
2017-10-15 22:16:56 +00:00
|
|
|
|