Skip to content

enable previously leftout test_usetex #6918

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 5 commits into from
Aug 30, 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
Adjust tol so that test pass both locally for me on osx and on travis
  • Loading branch information
jenshnielsen committed Aug 13, 2016
commit 50c0b742655d297ced3db0342e447733f40f4a70
4 changes: 3 additions & 1 deletion lib/matplotlib/tests/test_usetex.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
import matplotlib.pyplot as plt


@image_comparison(baseline_images=['test_usetex'], extensions=['pdf', 'png'])
@image_comparison(baseline_images=['test_usetex'],
extensions=['pdf', 'png'],
tol=0.3)
def test_usetex():
matplotlib.rcParams['text.usetex'] = True
fig = plt.figure()
Expand Down