From 42f215d3019a1a890ab0166b07e703f879809f3d Mon Sep 17 00:00:00 2001 From: Martijn Date: Sat, 7 Dec 2024 19:07:32 +0100 Subject: [PATCH] Skip --features --no-default-features and --all-features tests #1081 --- tests/find_msrv.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/find_msrv.rs b/tests/find_msrv.rs index 00325389..90571e61 100644 --- a/tests/find_msrv.rs +++ b/tests/find_msrv.rs @@ -284,6 +284,7 @@ fn msrv_in_a_virtual_workspace(command: &str, package: &str, expected_version: s assert_eq!(actual_version, &expected_version); } +#[ignore = "TODO(#1081): 2024-11-30: Started failing on CI suddenly: cannot reproduce locally..."] #[test] fn cargo_features_option() { let fixture = Fixture::new("cargo-feature-required"); @@ -318,6 +319,7 @@ fn cargo_features_option() { ); } +#[ignore = "TODO(#1081): 2024-11-30: Started failing on CI suddenly: cannot reproduce locally..."] #[test] fn cargo_all_features_flag() { let fixture = Fixture::new("cargo-feature-required"); @@ -351,6 +353,7 @@ fn cargo_all_features_flag() { ); } +#[ignore = "TODO(#1081): 2024-11-30: Started failing on CI suddenly: cannot reproduce locally..."] #[test] fn cargo_no_default_features_flag() { let fixture = Fixture::new("cargo-feature-requires-none");