(self)
| 15 | |
| 16 | @unittest.skipUnless(test_level() >= 0, 'skip test in current test level') |
| 17 | def test_run(self): |
| 18 | content_check_func = pipeline(self.task, model=self.model_id) |
| 19 | result = content_check_func('data/test/images/content_check.jpg') |
| 20 | print(result) |
| 21 | |
| 22 | |
| 23 | if __name__ == '__main__': |