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

Function create_wasm_test_process

ci/util/test_runner.py:698–712  ·  view source on GitHub ↗

Create a WASM compilation test process without starting it

(enable_stack_trace: bool = True)

Source from the content-addressed store, hash-verified

696
697
698def create_wasm_test_process(enable_stack_trace: bool = True) -> RunningProcess:
699 """Create a WASM compilation test process without starting it"""
700 cmd = [
701 "uv",
702 "run",
703 "python",
704 "ci/wasm_compile.py",
705 "examples/wasm",
706 "--run",
707 ]
708
709 # Use 5 minute timeout for WASM compilation and testing
710 return RunningProcess(
711 cmd, auto_run=False, timeout=300, output_formatter=TimestampFormatter()
712 )
713
714
715def get_cpp_test_processes(

Callers 1

runnerFunction · 0.85

Calls 1

TimestampFormatterClass · 0.90

Tested by

no test coverage detected