MCPcopy Create free account
hub / github.com/FastLED/FastLED / install_qemu

Method install_qemu

ci/docker_utils/qemu_test_integration.py:99–115  ·  view source on GitHub ↗

Pull Docker QEMU image. Returns: True if installation successful

(self)

Source from the content-addressed store, hash-verified

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
118def integrate_with_test_framework():

Callers 2

mainFunction · 0.95
mainFunction · 0.95

Calls 4

pull_imageMethod · 0.95
DockerQEMURunnerClass · 0.90
printFunction · 0.50

Tested by

no test coverage detected