8000 Fixes for Windows test failures on appveyor by jankatins · Pull Request #5922 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Fixes for Windows test failures on appveyor #5922

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

Merged
merged 12 commits into from
Feb 1, 2016
Merged
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_specgram_angle_freqs
affected:

* matplotlib.tests.test_axes.test_specgram_angle_freqs.test (RMS 0.002) (x86,27)
  • Loading branch information
jankatins committed Jan 27, 2016
commit b8cc87973b7ee7b51c00ed350f884ec59e5e5f0b
3 changes: 2 additions & 1 deletion lib/matplotlib/tests/test_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2955,7 +2955,8 @@ def test_specgram_magnitude_noise():


@image_comparison(baseline_images=['specgram_angle_freqs'],
remove_text=True, extensions=['png'])
remove_text=True, extensions=['png'],
tol=0.003 if on_win else 0)
def test_specgram_angle_freqs():
'''test axes.specgram in angle mode with sinusoidal stimuli'''
n = 10000
Expand Down
0