We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85fa4f6 commit 671020cCopy full SHA for 671020c
.github/workflows/python-tests.yml
@@ -37,5 +37,4 @@ jobs:
37
python -m unittest discover tests/datamining/
38
python -m unittest discover tests/downloaders/
39
python -m unittest discover tests/interpolation/
40
- python -m unittest discover tests/predictor/
41
python -m unittest discover tests/wrappers/
tests/interpolation/test_rbf.py
@@ -10,9 +10,9 @@ class TestRBF(unittest.TestCase):
10
def setUp(self):
11
self.dataset = pd.DataFrame(
12
{
13
- "Hs": np.random.rand(100) * 7,
14
- "Tp": np.random.rand(100) * 20,
15
- "Dir": np.random.rand(100) * 360,
+ "Hs": np.random.rand(1000) * 7,
+ "Tp": np.random.rand(1000) * 20,
+ "Dir": np.random.rand(1000) * 360,
16
}
17
)
18
self.subset = self.dataset.sample(frac=0.25)
0 commit comments