Skip to content

Commit

Permalink
Remove Gumbel test - the new test suite should cover that
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-pallini committed Apr 10, 2021
1 parent dfee976 commit e4901ee
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions pymc3/tests/test_distributions_random.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit e4901ee

Please sign in to comment.