@@ -105,7 +105,8 @@ def test_multiple_keys():
105
105
106
106
107
107
@image_comparison (['rgba_alpha.png' ], remove_text = True ,
108
- tol = {'aarch64' : 0.01 }.get (platform .machine (), 0 ))
108
+ tol = {'aarch64' : 0.01 , 'ppc64le' : 0.01 ,
109
+ 's390x' : 0.01 }.get (platform .machine (), 0 ))
109
110
def test_alpha_rgba ():
110
111
fig , ax = plt .subplots (1 , 1 )
111
112
ax .plot (range (10 ), lw = 5 )
@@ -114,7 +115,8 @@ def test_alpha_rgba():
114
115
115
116
116
117
@image_comparison (['rcparam_alpha.png' ], remove_text = True ,
117
- tol = {'aarch64' : 0.01 }.get (platform .machine (), 0 ))
118
+ tol = {'aarch64' : 0.01 , 'ppc64le' : 0.01 ,
119
+ 's390x' : 0.01 }.get (platform .machine (), 0 ))
118
120
def test_alpha_rcparam ():
119
121
fig , ax = plt .subplots (1 , 1 )
120
122
ax .plot (range (10 ), lw = 5 )
@@ -140,7 +142,8 @@ def test_fancy():
140
142
141
143
142
144
@image_comparison (['framealpha' ], remove_text = True ,
143
- tol = {'aarch64' : 0.02 }.get (platform .machine (), 0.0 ))
145
+ tol = {'aarch64' : 0.02 , 'ppc64le' : 0.02 ,
146
+ 's390x' : 0.02 }.get (platform .machine (), 0 ))
144
147
def test_framealpha ():
145
148
x = np .linspace (1 , 100 , 100 )
146
149
y = x
0 commit comments