Skip to content

Commit fd3ef9e

Browse files
Strengthen CI workflow install-step guard assertions
Co-authored-by: Shri Sukhani <shrisukhani@users.noreply.github.com>
1 parent eb0c64a commit fd3ef9e

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

tests/test_ci_workflow_quality_gates.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ def test_ci_workflow_includes_architecture_guard_job():
1515
def test_ci_workflow_uses_make_targets_for_quality_gates():
1616
ci_workflow = Path(".github/workflows/ci.yml").read_text(encoding="utf-8")
1717

18+
assert "python3 -m pip install --upgrade pip" in ci_workflow
19+
assert "run: |\n python3 -m pip install --upgrade pip\n make install" in ci_workflow
1820
assert "run: make lint" in ci_workflow
1921
assert "run: make format-check" in ci_workflow
2022
assert "run: make compile" in ci_workflow

0 commit comments

Comments
 (0)