Skip to content

Commit dc0bc29

Browse files
ColCarrolltwiecki
authored andcommitted
TST Sample more normals (pymc-devs#1354)
1 parent ac8138a commit dc0bc29

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

pymc3/tests/helpers.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55
class SeededTest(unittest.TestCase):
66
random_seed = 20160911
77

8-
@classmethod
9-
def setUpClass(cls):
10-
nr.seed(cls.random_seed)
11-
128
@classmethod
139
def setUpClass(cls):
1410
nr.seed(cls.random_seed)

pymc3/tests/test_stats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class TestStats(SeededTest):
1616
@classmethod
1717
def setUpClass(cls):
1818
super(TestStats, cls).setUpClass()
19-
cls.normal_sample = normal(0, 1, 150000)
19+
cls.normal_sample = normal(0, 1, 200000)
2020

2121
def test_autocorr(self):
2222
"""Test autocorrelation and autocovariance functions"""

0 commit comments

Comments
 (0)