Delete the old patch too.

This commit is contained in:
Elliott Sales de Andrade 2018-03-01 03:07:24 -05:00
commit 43745dbfcf

View file

@ -1,44 +0,0 @@
From 9792ed5ef9d7db4b0ef8aefb70b11eccc0bdfbcb Mon Sep 17 00:00:00 2001
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date: Wed, 28 Feb 2018 00:35:24 -0500
Subject: [PATCH 7/7] Increase tolerance for non-x86 systems.
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
---
lib/cartopy/tests/mpl/test_mpl_integration.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lib/cartopy/tests/mpl/test_mpl_integration.py b/lib/cartopy/tests/mpl/test_mpl_integration.py
index 681c9bc..1ce5152 100644
--- a/lib/cartopy/tests/mpl/test_mpl_integration.py
+++ b/lib/cartopy/tests/mpl/test_mpl_integration.py
@@ -502,7 +502,7 @@ def test_quiver_regrid_with_extent():
@pytest.mark.natural_earth
-@ImageTesting(['barbs_plate_carree'])
+@ImageTesting(['barbs_plate_carree'], tolerance=0.57)
def test_barbs():
x = np.arange(-60, 45, 5)
y = np.arange(30, 75, 5)
@@ -524,7 +524,7 @@ def test_barbs():
@pytest.mark.natural_earth
-@ImageTesting(['barbs_regrid'])
+@ImageTesting(['barbs_regrid'], tolerance=1.16)
def test_barbs_regrid():
x = np.arange(-60, 42.5, 2.5)
y = np.arange(30, 72.5, 2.5)
@@ -542,7 +542,7 @@ def test_barbs_regrid():
@pytest.mark.natural_earth
-@ImageTesting(['barbs_regrid_with_extent'])
+@ImageTesting(['barbs_regrid_with_extent'], tolerance=0.52)
def test_barbs_regrid_with_extent():
x = np.arange(-60, 42.5, 2.5)
y = np.arange(30, 72.5, 2.5)
--
2.14.3