Commit 73c9619
committed
🤖 Optimize integration test parallelization (maxWorkers 200% → 100%)
Reduce Jest workers from 200% to 100% on 32-core depot runners.
Problem: 64 parallel workers (200% × 32 cores) caused resource contention.
Each test spawns child processes, performs I/O, and git operations.
Solution: 32 workers (100%) provides better resource utilization and
less context switching overhead.
Results from testing across 3 CI runs:
- Baseline: 193s test execution
- Optimized: 173-183s test execution
- Average improvement: ~15s (7.8% faster)
Note: --silent flag is intentional to prevent overwhelming log output
from 32 parallel workers across 17 test files. Failures still show
full details.
Generated with `cmux`1 parent c08b7a8 commit 73c9619
1 file changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
97 | 97 | | |
98 | 98 | | |
99 | 99 | | |
100 | | - | |
| 100 | + | |
| 101 | + | |
101 | 102 | | |
102 | 103 | | |
103 | 104 | | |
| |||
0 commit comments