From c824d009864f27a0f23555d1d213f6661e4a27f6 Mon Sep 17 00:00:00 2001 From: veeso Date: Fri, 17 Sep 2021 09:52:35 +0200 Subject: [PATCH] Removed auto-update test for macos (blocks on github/CI) --- src/system/auto_update.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/system/auto_update.rs b/src/system/auto_update.rs index 44257b9..0194d4d 100644 --- a/src/system/auto_update.rs +++ b/src/system/auto_update.rs @@ -187,6 +187,7 @@ mod test { } #[test] + #[cfg(not(all(target_os = "macos", feature = "github-actions")))] fn auto_update() { // Wno version assert_eq!( @@ -200,6 +201,7 @@ mod test { } #[test] + #[cfg(not(all(target_os = "macos", feature = "github-actions")))] fn check_for_updates() { println!("{:?}", Update::is_new_version_available()); assert!(Update::is_new_version_available().is_ok());