From 36477ad85ee075c969962beb60a23fb526e91249 Mon Sep 17 00:00:00 2001 From: Ricardo Vieira <28983449+ricardoV94@users.noreply.github.com> Date: Wed, 8 Dec 2021 19:29:50 +0100 Subject: [PATCH] Remove windows xfails --- pymc/tests/test_ode.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pymc/tests/test_ode.py b/pymc/tests/test_ode.py index 5e4258fc9e..a4afb59783 100644 --- a/pymc/tests/test_ode.py +++ b/pymc/tests/test_ode.py @@ -173,7 +173,6 @@ def ode_func_5(y, t, p): np.testing.assert_array_equal(np.ravel(model5_sens_ic), model5._sens_ic) -@pytest.mark.xfail(condition=IS_WINDOWS, reason="https://github.com/pymc-devs/aesara/issues/390") def test_logp_scalar_ode(): """Test the computation of the log probability for these models""" @@ -270,9 +269,6 @@ def ode_func(y, t, p): assert op_1 != op_other return - @pytest.mark.xfail( - condition=IS_WINDOWS, reason="https://github.com/pymc-devs/aesara/issues/390" - ) def test_scalar_ode_1_param(self): """Test running model for a scalar ODE with 1 parameter""" @@ -301,9 +297,6 @@ def system(y, t, p): assert idata.posterior["y0"].shape == (1, 100) assert idata.posterior["sigma"].shape == (1, 100) - @pytest.mark.xfail( - condition=IS_WINDOWS, reason="https://github.com/pymc-devs/aesara/issues/390" - ) def test_scalar_ode_2_param(self): """Test running model for a scalar ODE with 2 parameters"""