The city’s pipeline refuses to promote a parks-map build when unit or integration tests fail. What role do those automated tests play?
Select an answer to reveal the explanation.
Short Explanation
Failed tests are the red light at the intersection—don’t roll the build into the next environment. Automated unit and integration checks catch broken logic before citizens hit it. Green means go; red means fix, not force-promote.
Full Explanation
Automated testing in CI/CD pipelines evaluates functional correctness and integration behavior before artifacts advance. Failing tests should halt promotion to protect downstream environments. Tests do not delete remotes, substitute for live network controls, or control cloud billing by themselves.