@@ -173,7 +173,7 @@ def ode_func_5(y, t, p):
173
173
np .testing .assert_array_equal (np .ravel (model5_sens_ic ), model5 ._sens_ic )
174
174
175
175
176
- @pytest .mark .xfail (reason = "https://github.com/pymc-devs/aesara/issues/390" )
176
+ @pytest .mark .xfail (condition = IS_WINDOWS , reason = "https://github.com/pymc-devs/aesara/issues/390" )
177
177
def test_logp_scalar_ode ():
178
178
"""Test the computation of the log probability for these models"""
179
179
@@ -270,7 +270,9 @@ def ode_func(y, t, p):
270
270
assert op_1 != op_other
271
271
return
272
272
273
- @pytest .mark .xfail (reason = "https://github.com/pymc-devs/aesara/issues/390" )
273
+ @pytest .mark .xfail (
274
+ condition = IS_WINDOWS , reason = "https://github.com/pymc-devs/aesara/issues/390"
275
+ )
274
276
def test_scalar_ode_1_param (self ):
275
277
"""Test running model for a scalar ODE with 1 parameter"""
276
278
@@ -299,7 +301,9 @@ def system(y, t, p):
299
301
assert idata .posterior ["y0" ].shape == (1 , 100 )
300
302
assert idata .posterior ["sigma" ].shape == (1 , 100 )
301
303
302
- @pytest .mark .xfail (reason = "https://github.com/pymc-devs/aesara/issues/390" )
304
+ @pytest .mark .xfail (
305
+ condition = IS_WINDOWS , reason = "https://github.com/pymc-devs/aesara/issues/390"
306
+ )
303
307
def test_scalar_ode_2_param (self ):
304
308
"""Test running model for a scalar ODE with 2 parameters"""
305
309
0 commit comments