Skip to content

Commit 18d73db

Browse files
committed
Add xfail for numba failing tests reported in #980
1 parent 9f88e1f commit 18d73db

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

tests/link/numba/test_cython_support.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -76,19 +76,25 @@ def test_signature_provides(have, want, should_provide):
7676
[np.float64],
7777
float64(float64, int32),
7878
),
79-
(
79+
pytest.param(
8080
# expn doesn't have a float32 implementation
8181
scipy.special.cython_special.expn,
8282
np.float32,
8383
[np.float32, np.float32],
8484
float64(float64, float64, int32),
85+
marks=pytest.mark.xfail(
86+
reason="Failing in newer versions: https://github.com/pymc-devs/pytensor/issues/980"
87+
),
8588
),
86-
(
89+
pytest.param(
8790
# We choose the integer implementation if possible
8891
scipy.special.cython_special.expn,
8992
np.float32,
9093
[np.int64, np.float32],
9194
float64(int64, float64, int32),
95+
marks=pytest.mark.xfail(
96+
reason="Failing in newer versions: https://github.com/pymc-devs/pytensor/issues/980"
97+
),
9298
),
9399
],
94100
)

0 commit comments

Comments
 (0)