(self)
| 85 | name = "Starting Dangerzone VM" |
| 86 | |
| 87 | def should_skip(self) -> bool: |
| 88 | return ( |
| 89 | settings.Settings().custom_runtime_specified() |
| 90 | or platform.system() == "Linux" |
| 91 | ) |
| 92 | |
| 93 | def run(self) -> None: |
| 94 | PodmanMachineManager().start() |
nothing calls this directly
no test coverage detected