diff --git a/src/cli.rs b/src/cli.rs index e56dfff..8f0cf7d 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -1216,7 +1216,7 @@ mod tests { } #[test] - #[ignore] + #[cfg_attr(target_os = "macos", ignore)] fn test_transform_edge_app_path_to_manifest_without_path_should_return_correct_path() { let dir = tempdir().unwrap(); let dir_path = dir.path(); diff --git a/src/commands/edge_app/utils.rs b/src/commands/edge_app/utils.rs index f01d6ce..84a77e4 100644 --- a/src/commands/edge_app/utils.rs +++ b/src/commands/edge_app/utils.rs @@ -979,7 +979,7 @@ mod tests { } #[test] - #[ignore] + #[cfg_attr(target_os = "macos", ignore)] fn test_transform_edge_app_instance_path_to_instance_manifest_should_return_current_dir_with_() { let dir = tempdir().unwrap(); @@ -992,7 +992,7 @@ mod tests { } #[test] - #[ignore] + #[cfg_attr(target_os = "macos", ignore)] fn test_transform_edge_app_instance_path_to_instance_manifest_when_path_provided_should_return_path_with_instance_manifest( ) { let dir = tempdir().unwrap(); @@ -1026,7 +1026,7 @@ mod tests { } #[test] - #[ignore] + #[cfg_attr(target_os = "macos", ignore)] fn test_transform_edge_app_instance_path_to_instance_manifest_with_env_instance_override_should_return_overrided_manifest_path( ) { let dir = tempdir().unwrap(); @@ -1054,7 +1054,7 @@ mod tests { } #[test] - #[ignore] + #[cfg_attr(target_os = "macos", ignore)] fn test_transform_edge_app_path_to_manifest_should_return_current_dir_with_() { let dir = tempdir().unwrap(); let dir_path = dir.path(); @@ -1096,7 +1096,7 @@ mod tests { } #[test] - #[ignore] + #[cfg_attr(target_os = "macos", ignore)] fn test_transform_edge_app_path_to_manifest_with_env_instance_override_should_return_overrided_manifest_path( ) { let dir = tempdir().unwrap();