From cf3df6cbef0f2a4e1c0085eed1c4db15d8c6b4d4 Mon Sep 17 00:00:00 2001 From: Radu Marias Date: Thu, 26 Dec 2024 02:40:27 +0200 Subject: [PATCH] skip keyring tests --- src/keyring.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/keyring.rs b/src/keyring.rs index 9970dc76..87324c32 100644 --- a/src/keyring.rs +++ b/src/keyring.rs @@ -31,6 +31,7 @@ mod tests { use super::*; #[test] + #[ignore] fn test_save() { let password = SecretString::from_str("password").unwrap(); assert!(save(&password, "test1").is_ok()); @@ -38,6 +39,7 @@ mod tests { } #[test] + #[ignore] fn test_get() { let password = SecretString::from_str("password").unwrap(); save(&password, "test2").unwrap(); @@ -49,6 +51,7 @@ mod tests { } #[test] + #[ignore] fn test_remove() { let password = SecretString::from_str("password").unwrap(); save(&password, "test3").unwrap();