main.
Track: total minutes/spend, median run time for critical workflows, queue time, artifact GB.
max-parallel, then A/B compare durations and queue times before switching your default runner.
See: jest.retryTimes
```yaml # Jest run: npx jest --maxWorkers=50% # consider also: jest.retryTimes() ```See: pytest-rerunfailures
```bash # Pytest example pytest -q --maxfail=1 # fail fast pytest --reruns 2 --only-rerun "AssertionError" ```