Sobes.tech
Middle

Have you run tests locally or only on CI?

sobes.tech AI

Answer from AI

Tests are usually run both locally and on CI, as these are complementary stages.

  • Locally running tests is convenient for quick verification of changes during development. It allows immediate feedback on whether the functionality is broken.
  • On CI tests are run automatically on each push or pull request to ensure code stability and prevent bugs from entering the main branch.

In practice, I run tests locally for debugging and quick feedback, and then rely on CI for a full run of all tests and integration checks.