Skip to content

Commit 412b880

Browse files
committed
Add black
1 parent e690356 commit 412b880

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pymc/tests/test_distributions.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3420,7 +3420,9 @@ def test_no_warning_logp(self):
34203420
"sd_dist",
34213421
[
34223422
pm.Exponential.dist(1),
3423-
pytest.mark.xfail(pm.MvNormal.dist(np.ones(3), np.eye(3)),)
3423+
pytest.mark.xfail(
3424+
pm.MvNormal.dist(np.ones(3), np.eye(3)),
3425+
),
34243426
],
34253427
)
34263428
def test_sd_dist_automatically_resized(self, sd_dist):

pymc/tests/test_distributions_timeseries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ def test_grw_logp(self):
8181

8282
np.testing.assert_almost_equal(logp_eval, logp_reference, decimal=6)
8383

84-
8584
@pytest.mark.parametrize(
8685
"steps,size,expected",
8786
(
@@ -158,6 +157,7 @@ def test_grw_inference(self):
158157
recovered_sigma = trace.posterior["sigma"].mean()
159158
np.testing.assert_allclose([mu, sigma], [recovered_mu, recovered_sigma], atol=0.2)
160159

160+
161161
@pytest.mark.xfail(reason="Timeseries not refactored")
162162
def test_AR():
163163
# AR1

0 commit comments

Comments
 (0)