From 536539577779c47488c7bbd1beaf4383f0b2071d Mon Sep 17 00:00:00 2001 From: austereantelope <95935342+austereantelope@users.noreply.github.com> Date: Mon, 17 Jan 2022 14:59:14 -0600 Subject: [PATCH] tighten test_normal_scalar bound --- pymc/tests/test_sampling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymc/tests/test_sampling.py b/pymc/tests/test_sampling.py index 143cdba500..6eef330665 100644 --- a/pymc/tests/test_sampling.py +++ b/pymc/tests/test_sampling.py @@ -508,7 +508,7 @@ def test_normal_scalar(self): assert ppc["a"].shape == (nchains * ndraws,) # mu's standard deviation may have changed thanks to a's observed _, pval = stats.kstest(ppc["a"] - trace["mu"], stats.norm(loc=0, scale=1).cdf) - assert pval > 0.001 + assert pval > 0.01 # size argument not introduced to fast version [2019/08/20:rpg] with model: