From adc1d2594815d7057565bb52bd4eb97c7ec1aa09 Mon Sep 17 00:00:00 2001 From: kernelkind Date: Thu, 23 May 2024 16:06:51 -0400 Subject: [PATCH] macos_key_storage: runner ignore tests Signed-off-by: kernelkind --- src/macos_key_storage.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/macos_key_storage.rs b/src/macos_key_storage.rs index 9e63b8c..e47a1c2 100644 --- a/src/macos_key_storage.rs +++ b/src/macos_key_storage.rs @@ -111,7 +111,11 @@ mod tests { service_name: TEST_SERVICE_NAME, }; + // individual tests are ignored so test runner doesn't run them all concurrently + // TODO: a way to run them all serially should be devised + #[test] + #[ignore] fn add_and_remove_test_pubkey_only() { let num_keys_before_test = STORAGE.get_pubkeys().len(); @@ -154,11 +158,13 @@ mod tests { } #[test] + #[ignore] fn add_and_remove_full() { add_and_remove_full_n(1); } #[test] + #[ignore] fn add_and_remove_full_10() { add_and_remove_full_n(10); }