(self)
| 35 | super(IrisTest, self).setUp() |
| 36 | |
| 37 | def tearDown(self): |
| 38 | if os.path.isdir(self._tmp_dir): |
| 39 | shutil.rmtree(self._tmp_dir) |
| 40 | super(IrisTest, self).tearDown() |
| 41 | |
| 42 | def testTrainAndSaveNonSequential(self): |
| 43 | final_train_accuracy = iris.train(100, self._tmp_dir) |
nothing calls this directly
no outgoing calls
no test coverage detected