Skip to content

Commit

Permalink
macos_key_storage: runner ignore tests
Browse files Browse the repository at this point in the history
Signed-off-by: kernelkind <[email protected]>
  • Loading branch information
kernelkind committed May 23, 2024
1 parent 0c88c63 commit adc1d25
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/macos_key_storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down Expand Up @@ -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);
}
Expand Down

0 comments on commit adc1d25

Please sign in to comment.