---
title: Test-suite speed loop
description: Make a test suite faster without losing coverage or behavior, proving
  each improvement with repeatable timing.
url: https://subramanya.ai/awesome-loops/test-suite-speed-loop/
tags:
- tests
- performance
- ci
---

# Test-suite speed loop

Use this when slow tests are causing real workflow drag.

1. Capture a timing baseline under repeatable conditions.
2. Identify the slowest tests or setup phases.
3. Improve one bottleneck at a time without deleting coverage.
4. Run the full suite and coverage report after each meaningful change.
5. Compare against the baseline with the same timing method.
6. Document any tradeoffs.

Stop when the target runtime is reached or remaining work is explicit and owned.
