We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac8138a commit dc0bc29Copy full SHA for dc0bc29
pymc3/tests/helpers.py
@@ -5,10 +5,6 @@
5
class SeededTest(unittest.TestCase):
6
random_seed = 20160911
7
8
- @classmethod
9
- def setUpClass(cls):
10
- nr.seed(cls.random_seed)
11
-
12
@classmethod
13
def setUpClass(cls):
14
nr.seed(cls.random_seed)
pymc3/tests/test_stats.py
@@ -16,7 +16,7 @@ class TestStats(SeededTest):
16
17
18
super(TestStats, cls).setUpClass()
19
- cls.normal_sample = normal(0, 1, 150000)
+ cls.normal_sample = normal(0, 1, 200000)
20
21
def test_autocorr(self):
22
"""Test autocorrelation and autocovariance functions"""
0 commit comments