8000 CI: add appveyor script to build Windows wheels by matthew-brett · Pull Request #6969 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

CI: add appveyor script to build Windows wheels #6969

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
TST: up tolerance for test_tri_smooth_gradient
affected:

* matplotlib.tests.test_triangulation.test_tri_smooth_gradient.test (RMS 0.014) (x64,35)

The diff looks pitch black to me... -> up the tolerance...
  • Loading branch information
jankatins authored and matthew-brett committed Aug 25, 2016
commit 95f1e72f8552bfd27d079ae026f71e2f8fea53cf
8000
5 changes: 4 additions & 1 deletion lib/matplotlib/tests/test_triangulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
import matplotlib.cm as cm
from matplotlib.path import Path

import sys
on_win = (sys.platform == 'win32')

def test_delaunay():
# No duplicate points, regular grid.
Expand Down Expand Up @@ -770,7 +772,8 @@ def z(x, y):


@image_comparison(baseline_images=['tri_smooth_gradient'],
extensions=['png'], remove_text=True)
extensions=['png'], remove_text=True,
tol=0.015 if on_win else 0)
def test_tri_smooth_gradient():
# Image comparison based on example trigradient_demo.

Expand Down
0