(self)
| 23 | class CustomPipelineTest(unittest.TestCase): |
| 24 | |
| 25 | def setUp(self) -> None: |
| 26 | self.model_dir = '/tmp/custom-image' |
| 27 | self.prepare_dir(self.model_dir, 'custom-image') |
| 28 | |
| 29 | def prepare_dir(self, dirname, pipeline_name): |
| 30 | if not os.path.exists(dirname): |
nothing calls this directly
no test coverage detected