Codebase list python-geopandas / f87e019
Add patch to increase tolerance to fix plotting test failure. Bas Couwenberg 8 years ago
3 changed file(s) with 19 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
11
22 * Team upload.
33 * Fix Vcs-* URLs, rename repo from geopandas to python-geopandas.
4 * Add patch to increase tolerance to fix plotting test failure.
5 (closes: #792589)
46
57 -- Bas Couwenberg <sebastic@debian.org> Tue, 04 Aug 2015 14:19:49 +0200
68
0 Description: Increase tolerance to fix test failures.
1 Author: Matthew Perry <perrygeo@gmail.com>
2 Origin: https://github.com/geopandas/geopandas/commit/c4d9aa15f00247a4ec10d118267a16243ff5bfe8#diff-682fec388a6b6bf28d626072e6357aa0
3 Bug-Debian: https://bugs.debian.org/792589
4
5 --- a/tests/test_plotting.py
6 +++ b/tests/test_plotting.py
7 @@ -32,7 +32,7 @@ class PlotTests(unittest.TestCase):
8 shutil.rmtree(self.tempdir)
9 return
10
11 - def _compare_images(self, ax, filename, tol=8):
12 + def _compare_images(self, ax, filename, tol=10):
13 """ Helper method to do the comparisons """
14 assert isinstance(ax, Artist)
15 if GENERATE_BASELINE:
00 0001-Fix-tests.patch
1 0002-Fix-plotting-tests.patch