()
| 546 | |
| 547 | @staticmethod |
| 548 | def setup_mwm_diff_tool() -> AnyStr: |
| 549 | logger.info(f"Check mwm_diff_tool. Looking for it in {settings.BUILD_PATH} ...") |
| 550 | mwm_diff_tool_path = find_executable(settings.BUILD_PATH, "mwm_diff_tool") |
| 551 | logger.info(f"mwm_diff_tool found - {mwm_diff_tool_path}") |
| 552 | return mwm_diff_tool_path |
| 553 | |
| 554 | @staticmethod |
| 555 | def setup_osm_tools() -> Dict[AnyStr, AnyStr]: |
no test coverage detected