Skip to content

Commit 71226f7

Browse files
committed
test(ci): assert bedrock feature compile guard stays configured
1 parent fdcb912 commit 71226f7

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

scripts/tests/test_ci_workflows.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ def test_ci_includes_msrv_compile_guard(self):
3737
self.assertIn("toolchain: 1.75.0", ci)
3838
self.assertIn("cargo check --workspace --locked", ci)
3939

40+
def test_ci_includes_bedrock_feature_compile_guard(self):
41+
ci = (REPO_ROOT / ".github/workflows/ci.yml").read_text(encoding="utf-8")
42+
self.assertIn("bedrock-feature-compile", ci)
43+
self.assertIn("bedrock feature compile (fast)", ci)
44+
self.assertIn("Check (loopforge-cli with bedrock)", ci)
45+
self.assertIn("cargo check -p loopforge-cli --locked --features bedrock", ci)
46+
4047
def test_provider_nightly_workflow_generates_health_artifacts(self):
4148
workflow = (
4249
REPO_ROOT / ".github/workflows/provider-nightly.yml"

0 commit comments

Comments
 (0)