소스 검색

stop test from running on mac (#394)

Tensor-Programming 5 년 전
부모
커밋
bb55a0352c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tauri/src/file_system.rs

+ 1 - 1
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.