Skip to content

Commit

Permalink
test: continue running tests if one fails
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesCranmer committed Dec 21, 2024
1 parent e2a6a34 commit 0c3bcae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ lazy_static! {
}

fn aquire_lock() -> MutexGuard<'static, ()> {
GLOBAL_LOCK.lock().unwrap()
GLOBAL_LOCK.lock().unwrap_or_else(|e| e.into_inner())
}

struct TestEnv {
Expand Down

0 comments on commit 0c3bcae

Please sign in to comment.