Skip to content

Commit 143d7ec

Browse files
committed
remove irrelevant tests
1 parent cf6cedd commit 143d7ec

File tree

2 files changed

+0
-19
lines changed

2 files changed

+0
-19
lines changed

tests/distributions/test_continuous.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2230,19 +2230,6 @@ class TestInverseGammaMuSigma(BaseTestDistributionRandom):
22302230
checks_to_run = ["check_pymc_params_match_rv_op"]
22312231

22322232

2233-
class TestChiSquared(BaseTestDistributionRandom):
2234-
pymc_dist = pm.ChiSquared
2235-
pymc_dist_params = {"nu": 2.0}
2236-
expected_rv_op_params = {"nu": 2.0}
2237-
reference_dist_params = {"df": 2.0}
2238-
reference_dist = seeded_numpy_distribution_builder("chisquare")
2239-
checks_to_run = [
2240-
"check_pymc_params_match_rv_op",
2241-
"check_pymc_draws_match_reference",
2242-
"check_rv_size",
2243-
]
2244-
2245-
22462233
class TestLogistic(BaseTestDistributionRandom):
22472234
pymc_dist = pm.Logistic
22482235
pymc_dist_params = {"mu": 1.0, "s": 2.0}

tests/logprob/test_transform_value.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -153,12 +153,6 @@ def test_original_values_output_dict():
153153
lambda alpha, beta: sp.stats.invgamma(alpha, scale=beta),
154154
(),
155155
),
156-
(
157-
pt.random.chisquare,
158-
(1.5,),
159-
lambda df: sp.stats.chi2(df),
160-
(),
161-
),
162156
pytest.param(
163157
pt.random.weibull,
164158
(1.5,),

0 commit comments

Comments
 (0)