MilesCranmer commited on
Commit
4d6fbca
·
1 Parent(s): 9ff66c9

Change default test parameters

Browse files
Files changed (1) hide show
  1. test/test.py +1 -8
test/test.py CHANGED
@@ -10,14 +10,7 @@ import pandas as pd
10
 
11
  class TestPipeline(unittest.TestCase):
12
  def setUp(self):
13
- self.default_test_kwargs = dict(
14
- niterations=10,
15
- populations=100,
16
- ncyclesperiteration=100,
17
- npop=100,
18
- annealing=True,
19
- useFrequency=False,
20
- )
21
  np.random.seed(0)
22
  self.X = np.random.randn(100, 5)
23
 
 
10
 
11
  class TestPipeline(unittest.TestCase):
12
  def setUp(self):
13
+ self.default_test_kwargs = dict()
 
 
 
 
 
 
 
14
  np.random.seed(0)
15
  self.X = np.random.randn(100, 5)
16