Create a WASM compilation test process without starting it
(enable_stack_trace: bool = True)
| 696 | |
| 697 | |
| 698 | def 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 | |
| 715 | def get_cpp_test_processes( |
no test coverage detected