From 79b2b50ec5f3c9bf615a8ee916ce99927e4332e5 Mon Sep 17 00:00:00 2001 From: maciektr Date: Thu, 9 Nov 2023 14:25:07 +0100 Subject: [PATCH] Ignore tests failing as of #883 (#884) commit-id:1bcbe058 --- scarb/tests/local_registry.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scarb/tests/local_registry.rs b/scarb/tests/local_registry.rs index bc4be0da7..6f02e9c53 100644 --- a/scarb/tests/local_registry.rs +++ b/scarb/tests/local_registry.rs @@ -123,7 +123,9 @@ fn url_pointing_to_file() { drop(registry_t); } +// FIXME(#883): Unignore these tests. #[test] +#[cfg_attr(target_os = "windows", ignore = "ignored on windows as of #883")] fn publish() { let t = TempDir::new().unwrap(); let index = t.child("index"); @@ -203,7 +205,9 @@ fn publish() { ); } +// FIXME(#883): Unignore these tests. #[test] +#[cfg_attr(target_os = "windows", ignore = "ignored on windows as of #883")] fn publish_overwrites_existing() { let index = TempDir::new().unwrap();