We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03f7fd7 commit 7be3a9fCopy full SHA for 7be3a9f
mcbackend/test_adapter_pymc.py
@@ -69,6 +69,7 @@ def teardown_method(self, method):
69
self._client_main.disconnect()
70
return
71
72
+ @pytest.mark.xfail(reason="Warning stats are objects. See #73.")
73
@pytest.mark.parametrize("cores", [1, 3])
74
def test_cores(self, simple_model, cores):
75
backend = ClickHouseBackend(self._client)
@@ -87,13 +88,10 @@ def wrapper(meta: RunMeta):
87
88
trace = TraceBackend(backend)
89
idata = pm.sample(
90
trace=trace,
- tune=3,
91
- draws=5,
+ tune=30,
92
+ draws=50,
93
chains=2,
94
cores=cores,
- step=pm.Metropolis(),
95
- discard_tuned_samples=False,
96
- compute_convergence_checks=False,
97
)
98
if not len(args) == 1:
99
_log.warning("Run was initialized multiple times.")
0 commit comments