Run all tests
(self)
| 329 | logger.info('=' * 80) |
| 330 | |
| 331 | def run_all_tests(self): |
| 332 | """Run all tests""" |
| 333 | logger.info('\n🚀 Starting OpenOCR test suite...\n') |
| 334 | |
| 335 | # Test Python API |
| 336 | self.test_python_api() |
| 337 | |
| 338 | # Test Command-line |
| 339 | self.test_command_line() |
| 340 | |
| 341 | logger.info('\n' + '=' * 80) |
| 342 | logger.info('🎉 All tests completed!') |
| 343 | logger.info(f'📁 Test outputs saved to: {self.output_dir.absolute()}') |
| 344 | logger.info('=' * 80) |
| 345 | |
| 346 | |
| 347 | def main(): |
no test coverage detected