Skip to content

Commit fdd6c1e

Browse files
test(distributions): remove redundant ChiSquared and LogitNormal tests
1 parent b6fcd27 commit fdd6c1e

1 file changed

Lines changed: 0 additions & 14 deletions

File tree

tests/distributions/test_continuous.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -331,13 +331,6 @@ def test_chisquared_logcdf(self):
331331
lambda value, nu: st.chi2.logcdf(value, df=nu),
332332
)
333333

334-
def test_chisquared_icdf(self):
335-
check_icdf(
336-
pm.ChiSquared,
337-
{"nu": Rplus},
338-
lambda q, nu: st.chi2.ppf(q, df=nu),
339-
)
340-
341334
def test_wald_logp(self):
342335
check_logp(
343336
pm.Wald,
@@ -912,13 +905,6 @@ def test_logitnormal(self):
912905
),
913906
decimal=select_by_precision(float64=6, float32=1),
914907
)
915-
check_logcdf(
916-
pm.LogitNormal,
917-
Unit,
918-
{"mu": R, "sigma": Rplusbig},
919-
lambda value, mu, sigma: st.norm.logcdf(sp.logit(value), mu, sigma),
920-
decimal=select_by_precision(float64=5, float32=1),
921-
)
922908
check_icdf(
923909
pm.LogitNormal,
924910
{"mu": R, "sigma": Rplus},

0 commit comments

Comments
 (0)