Skip to content

Commit a0a46be

Browse files
authored
Merge pull request Kaggle#373 from Kaggle/add-talos
close h2o session in test
2 parents 3fc7e45 + 0020fba commit a0a46be

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_h2o.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
import h2o
44

55
class TestH2o(unittest.TestCase):
6+
def tearDown(self):
7+
h2o.cluster().shutdown(False)
8+
69
def test_init_read(self):
710
h2o.init()
811
train = h2o.import_file("/input/tests/data/train.csv", destination_frame="train")

0 commit comments

Comments
 (0)