Skip to content

Commit 671020c

Browse files
committed
[JTH] remove test predictor in cloud
1 parent 85fa4f6 commit 671020c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/python-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,4 @@ jobs:
3737
python -m unittest discover tests/datamining/
3838
python -m unittest discover tests/downloaders/
3939
python -m unittest discover tests/interpolation/
40-
python -m unittest discover tests/predictor/
4140
python -m unittest discover tests/wrappers/

tests/interpolation/test_rbf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ class TestRBF(unittest.TestCase):
1010
def setUp(self):
1111
self.dataset = pd.DataFrame(
1212
{
13-
"Hs": np.random.rand(100) * 7,
14-
"Tp": np.random.rand(100) * 20,
15-
"Dir": np.random.rand(100) * 360,
13+
"Hs": np.random.rand(1000) * 7,
14+
"Tp": np.random.rand(1000) * 20,
15+
"Dir": np.random.rand(1000) * 360,
1616
}
1717
)
1818
self.subset = self.dataset.sample(frac=0.25)

0 commit comments

Comments
 (0)