From 79b030896760909c7bcf5f6368ffb8b7538236a8 Mon Sep 17 00:00:00 2001 From: Sergey Borovkov Date: Wed, 6 Aug 2025 21:30:42 +0400 Subject: [PATCH] Disable some of the tests that might be flaky on macos --- src/commands/edge_app/utils.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/commands/edge_app/utils.rs b/src/commands/edge_app/utils.rs index 5068daa..ce41134 100644 --- a/src/commands/edge_app/utils.rs +++ b/src/commands/edge_app/utils.rs @@ -1047,6 +1047,7 @@ mod tests { } #[test] + #[cfg_attr(target_os = "macos", ignore)] fn test_transform_edge_app_instance_path_to_instance_manifest_with_env_path_instead_of_file_should_fail( ) { let dir = tempdir().unwrap(); @@ -1073,6 +1074,7 @@ mod tests { } #[test] + #[cfg_attr(target_os = "macos", ignore)] fn test_transform_edge_app_path_to_manifest_when_path_provided_should_return_path_with_manifest( ) { let dir = tempdir().unwrap(); @@ -1089,6 +1091,7 @@ mod tests { } #[test] + #[cfg_attr(target_os = "macos", ignore)] fn test_transform_edge_app_path_to_manifest_when_path_provided_is_not_a_dir_should_fail() { let dir = tempdir().unwrap(); let dir_path = dir.path(); @@ -1117,6 +1120,7 @@ mod tests { } #[test] + #[cfg_attr(target_os = "macos", ignore)] fn test_transform_edge_app_path_to_manifest_with_env_path_instead_of_file_should_fail() { let dir = tempdir().unwrap(); let dir_path = dir.path();