Skip to content

Commit 3419969

Browse files
committed
Add TestMvGaussianRandomWalk
1 parent c3cc70c commit 3419969

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pymc3/tests/test_distributions_random.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,12 @@ class TestGaussianRandomWalk(BaseTestCases.BaseTestCase):
310310
default_shape = (1,)
311311

312312

313+
class TestMvGaussianRandomWalk(BaseTestCases.BaseTestCase):
314+
distribution = pm.MvGaussianRandomWalk
315+
params = {"mu": np.array([1.0, 0.0]), "cov": np.array([[1.0, 0.0], [0.0, 2.0]])}
316+
default_shape = (10, 2)
317+
318+
313319
class TestNormal(BaseTestCases.BaseTestCase):
314320
distribution = pm.Normal
315321
params = {"mu": 0.0, "tau": 1.0}

0 commit comments

Comments
 (0)