fix: ignore docker_backend_runs_a_trivial_effect on windows
commit
76430defix: ignore docker_backend_runs_a_trivial_effect on windows
Windows CI runners use Windows containers, which can’t pull the debian:stable-slim Linux image, so the test always fails there regardless of docker::ensure_docker() succeeding.
Assisted-by: Claude:claude-sonnet-5
Reviews
No reviews of this commit yet — record a verdict below.
Start a review
crates/git-effect/src/engine.rs
@@ -1670,6 +1670,10 @@
// @relation(checks.sandbox, role=Verifies)
#[test]
+ #[cfg_attr(
+ windows,
+ ignore = "windows runners use Windows containers; no Linux image support"
+ )]
fn docker_backend_runs_a_trivial_effect() {
if docker::ensure_docker().is_err() {
eprintln!("skipping docker_backend_runs_a_trivial_effect: docker is not available");