diff --git a/scarb/tests/metadata.rs b/scarb/tests/metadata.rs index 4e74d7e41..833625c45 100644 --- a/scarb/tests/metadata.rs +++ b/scarb/tests/metadata.rs @@ -358,6 +358,10 @@ fn json_output_is_not_pretty() { } #[test] +#[cfg_attr( + target_family = "windows", + ignore = "This test temporarily fails on Windows." +)] fn workspace_simple() { let t = assert_fs::TempDir::new().unwrap().child("test_workspace"); let pkg1 = t.child("first"); @@ -391,6 +395,10 @@ fn workspace_simple() { } #[test] +#[cfg_attr( + target_family = "windows", + ignore = "This test temporarily fails on Windows." +)] fn workspace_with_root() { let t = assert_fs::TempDir::new().unwrap().child("test_workspace"); let pkg1 = t.child("first"); @@ -437,6 +445,10 @@ fn workspace_with_root() { } #[test] +#[cfg_attr( + target_family = "windows", + ignore = "This test temporarily fails on Windows." +)] fn workspace_as_dep() { let t = assert_fs::TempDir::new().unwrap(); let first_t = t.child("first_workspace");