Regression Test - CI/CD用語集の定義
regression test とは、変更後に既存のテストを再実行して、以前は動いていた機能が壊れていないことを確認し、新しいコードによって再び持ち込まれたバグを捉えるものである。
CI において
自動化されたスイート全体が commit のたびに regression のセーフティネットとして働きます。これが、continuous integration が壊れを早期に捉える中心的な理由です。
関連ガイド
Smoke Test - CI/CD Glossary DefinitionSmoke Test: A smoke test is a quick, shallow check that the most critical paths work at all, run first so an…
Continuous Integration (CI) - CI/CD Glossary DefinitionContinuous Integration (CI): **Continuous integration** is the practice of automatically building and testing…
Test Suite - CI/CD Glossary DefinitionTest Suite: A test suite is a collection of related test cases grouped so they can be run together and report…