Pull Docker QEMU image. Returns: True if installation successful
(self)
| 97 | ) |
| 98 | |
| 99 | def install_qemu(self) -> bool: |
| 100 | """Pull Docker QEMU image. |
| 101 | |
| 102 | Returns: |
| 103 | True if installation successful |
| 104 | """ |
| 105 | print("Pulling Docker QEMU image...") |
| 106 | try: |
| 107 | runner = DockerQEMURunner() |
| 108 | runner.pull_image() |
| 109 | return True |
| 110 | except KeyboardInterrupt as ki: |
| 111 | handle_keyboard_interrupt(ki) |
| 112 | raise |
| 113 | except Exception as e: |
| 114 | print(f"Failed to pull Docker image: {e}", file=sys.stderr) |
| 115 | return False |
| 116 | |
| 117 | |
| 118 | def integrate_with_test_framework(): |
no test coverage detected