File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,9 @@ def test_pathclip():
168
168
@needs_xelatex
169
169
@pytest .mark .backend ('pgf' )
170
170
@image_comparison (['pgf_mixedmode.pdf' ], style = 'default' ,
171
- tol = {'aarch64' : 1.086 }.get (platform .machine (), 0.0 ))
171
+ tol = {'aarch64' : 1.086 , 'x86_64' : 1.086 }.get (
172
+ platform .machine (), 0.0
173
+ ))
172
174
def test_mixedmode ():
173
175
rc_xelatex = {'font.family' : 'serif' ,
174
176
'pgf.rcfonts' : False }
Original file line number Diff line number Diff line change 14
14
15
15
@image_comparison (baseline_images = ['test_usetex' ],
16
16
extensions = ['pdf' , 'png' ],
17
- tol = {'aarch64' : 2.868 }.get (platform .machine (), 0.3 ))
17
+ tol = {'aarch64' : 2.868 , 'x86_64' : 2.868 }.get (
18
+ platform .machine (), 0.3
19
+ ))
18
20
def test_usetex ():
19
21
mpl .rcParams ['text.usetex' ] = True
20
22
fig = plt .figure ()
You can’t perform that action at this time.
0 commit comments