Skip to content

Commit 59f500c

Browse files
committed
TST Fix Rhat bad test by changing seed and starting point.
1 parent 34e3f45 commit 59f500c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymc3/tests/test_diagnostics.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ def get_ptrace(self, n_samples):
2020
# Run sampler
2121
step1 = Slice([model.early_mean_log_, model.late_mean_log_])
2222
step2 = Metropolis([model.switchpoint])
23-
start = {'early_mean': 2., 'late_mean': 3., 'switchpoint': 50}
23+
start = {'early_mean': 2., 'late_mean': 3., 'switchpoint': 90}
2424
ptrace = sample(n_samples, [step1, step2], start, njobs=2, progressbar=False,
25-
random_seed=[1, 3])
25+
random_seed=[1, 4])
2626
return ptrace
2727

2828
def test_good(self):

0 commit comments

Comments
 (0)