From e4901eeada712cd1f64189a6acc01fcab84f1fc2 Mon Sep 17 00:00:00 2001 From: drabbit17 Date: Sat, 10 Apr 2021 13:02:11 +0100 Subject: [PATCH] Remove Gumbel test - the new test suite should cover that --- pymc3/tests/test_distributions_random.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pymc3/tests/test_distributions_random.py b/pymc3/tests/test_distributions_random.py index bb1182a8621..d4e88bda52b 100644 --- a/pymc3/tests/test_distributions_random.py +++ b/pymc3/tests/test_distributions_random.py @@ -1137,13 +1137,6 @@ def test_dirichlet_multinomial_dist_ShapeError(self, n, a, shape, expectation): with expectation: m.random() - @pytest.mark.xfail(reason="This distribution has not been refactored for v4") - def test_gumbel(self): - def ref_rand(size, mu, beta): - return st.gumbel_r.rvs(loc=mu, scale=beta, size=size) - - pymc3_random(pm.Gumbel, {"mu": R, "beta": Rplus}, ref_rand=ref_rand) - @pytest.mark.xfail(reason="This distribution has not been refactored for v4") def test_logistic(self): def ref_rand(size, mu, s):