Skip to content

Commit 7be3a9f

Browse files
committedDec 20, 2022
Run PyMC test with NUTS
1 parent 03f7fd7 commit 7be3a9f

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed
 

Diff for: ‎mcbackend/test_adapter_pymc.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ def teardown_method(self, method):
6969
self._client_main.disconnect()
7070
return
7171

72+
@pytest.mark.xfail(reason="Warning stats are objects. See #73.")
7273
@pytest.mark.parametrize("cores", [1, 3])
7374
def test_cores(self, simple_model, cores):
7475
backend = ClickHouseBackend(self._client)
@@ -87,13 +88,10 @@ def wrapper(meta: RunMeta):
8788
trace = TraceBackend(backend)
8889
idata = pm.sample(
8990
trace=trace,
90-
tune=3,
91-
draws=5,
91+
tune=30,
92+
draws=50,
9293
chains=2,
9394
cores=cores,
94-
step=pm.Metropolis(),
95-
discard_tuned_samples=False,
96-
compute_convergence_checks=False,
9795
)
9896
if not len(args) == 1:
9997
_log.warning("Run was initialized multiple times.")

0 commit comments

Comments
 (0)