| 3 | import h2o |
| 4 | |
| 5 | class TestH2o(unittest.TestCase): |
| 6 | def tearDown(self): |
| 7 | h2o.cluster().shutdown(False) |
| 8 | |
| 9 | def test_init_read(self): |
| 10 | h2o.init() |
| 11 | train = h2o.import_file("/input/tests/data/train.csv", destination_frame="train") |
| 12 | self.assertEqual(100, train.nrow) |
nothing calls this directly
no outgoing calls
no test coverage detected