提交 18d73db1 authored 作者: Ricardo Vieira's avatar Ricardo Vieira 提交者: Ricardo Vieira

Add xfail for numba failing tests reported in https://github.com/pymc-devs/pytensor/issues/980

上级 9f88e1fc
...@@ -76,19 +76,25 @@ def test_signature_provides(have, want, should_provide): ...@@ -76,19 +76,25 @@ def test_signature_provides(have, want, should_provide):
[np.float64], [np.float64],
float64(float64, int32), float64(float64, int32),
), ),
( pytest.param(
# expn doesn't have a float32 implementation # expn doesn't have a float32 implementation
scipy.special.cython_special.expn, scipy.special.cython_special.expn,
np.float32, np.float32,
[np.float32, np.float32], [np.float32, np.float32],
float64(float64, float64, int32), float64(float64, float64, int32),
marks=pytest.mark.xfail(
reason="Failing in newer versions: https://github.com/pymc-devs/pytensor/issues/980"
),
), ),
( pytest.param(
# We choose the integer implementation if possible # We choose the integer implementation if possible
scipy.special.cython_special.expn, scipy.special.cython_special.expn,
np.float32, np.float32,
[np.int64, np.float32], [np.int64, np.float32],
float64(int64, float64, int32), float64(int64, float64, int32),
marks=pytest.mark.xfail(
reason="Failing in newer versions: https://github.com/pymc-devs/pytensor/issues/980"
),
), ),
], ],
) )
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论