Skip to content

Commit 2cf411e

Browse files
committed
mark xfail for float32
1 parent 81f8320 commit 2cf411e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pymc3/tests/test_distributions.py

+4
Original file line numberDiff line numberDiff line change
@@ -913,6 +913,10 @@ def test_fun(value, mu, sigma):
913913
lambda value, alpha, beta: sp.gamma.logcdf(value, alpha, scale=1.0 / beta),
914914
)
915915

916+
@pytest.mark.xfail(
917+
condition=(theano.config.floatX == "float32"),
918+
reason="Fails on float32 due to numerical issues",
919+
)
916920
def test_inverse_gamma(self):
917921
self.pymc3_matches_scipy(
918922
InverseGamma,

0 commit comments

Comments
 (0)