We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdcb912 commit 71226f7Copy full SHA for 71226f7
1 file changed
scripts/tests/test_ci_workflows.py
@@ -37,6 +37,13 @@ def test_ci_includes_msrv_compile_guard(self):
37
self.assertIn("toolchain: 1.75.0", ci)
38
self.assertIn("cargo check --workspace --locked", ci)
39
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
+
47
def test_provider_nightly_workflow_generates_health_artifacts(self):
48
workflow = (
49
REPO_ROOT / ".github/workflows/provider-nightly.yml"
0 commit comments