Quarantine List - CI/CD用語集の定義
クアランティンリストは、既知の不安定なテストを保持し、追跡しつつもビルドをブロックしないようにします。
クアランティンリストとは、既知の不安定なテストを一時的にビルド失敗の対象から除外しつつ、追跡と報告は続ける集合です。テストを削除せずにCIをグリーンに保ちます。
隔離はあくまで応急処置であり、テストは修正して戻すべきです。リストを空にするポリシーがなければ、リストは肥大化しカバレッジは静かに損なわれていきます。
関連ガイド
Test Flakiness Rate - CI/CD Glossary DefinitionTest Flakiness Rate: The test flakiness rate is the fraction of test runs that fail intermittently on unchang…
Flaky Test - CI/CD Glossary DefinitionFlaky Test: A **flaky test** passes and fails on the same code due to nondeterminism (races, timing, external…
Coverage Gate - CI/CD Glossary DefinitionCoverage Gate: A coverage gate is a CI rule that fails the build if code coverage falls below a set threshold…