From bb55a0352c116d04848a843c2c5ed8ea29aee819 Mon Sep 17 00:00:00 2001 From: Tensor-Programming Date: Wed, 5 Feb 2020 17:09:04 -0500 Subject: [PATCH] stop test from running on mac (#394) --- tauri/src/file_system.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tauri/src/file_system.rs b/tauri/src/file_system.rs index c05790722..dafb2c446 100644 --- a/tauri/src/file_system.rs +++ b/tauri/src/file_system.rs @@ -135,7 +135,7 @@ mod test { } #[test] - #[cfg(not(target_os = "linux"))] + #[cfg(not(any(target_os = "linux", target_os = "macos")))] // test the file_write functionality fn test_write_to_file() -> crate::Result<()> { // import read_to_string and write to be able to manipulate the file.