Test Isolation - CI/CD用語集の定義
Test isolationは、各テストが他のテストに依存せず、また影響も受けないという性質 - 分離された状態、共有される可変グローバルがないこと - であり、安全な並列化の前提条件であり、flakinessに対する防御でもあります。
関連ガイド
Test Parallelization - CI/CD Glossary DefinitionTest parallelization runs independent tests at once across cores or machines, cutting suite wall-clock time -…
Fixture - CI/CD Glossary DefinitionA fixture is the fixed, known state a test sets up before running - sample data, configured objects, a prepar…
Quarantine - CI/CD Glossary DefinitionQuarantine moves a known-flaky test out of the blocking suite so it no longer fails the build, while still ru…