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();