We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba8edff commit fa9f525Copy full SHA for fa9f525
store/test-store/src/store.rs
@@ -123,6 +123,7 @@ where
123
}
124
125
/// Run a test with a connection into the primary database, not a full store
126
+#[allow(clippy::await_holding_lock)]
127
pub async fn run_test_with_conn<F>(test: F)
128
where
129
F: AsyncFnOnce(&mut AsyncPgConnection),
tests/src/fixture/mod.rs
@@ -353,6 +353,7 @@ fn test_logger(test_name: &str) -> Logger {
353
graph::log::logger(true).new(o!("test" => test_name.to_string()))
354
355
356
357
pub async fn stores(test_name: &str, store_config_path: &str) -> Stores {
358
let _mutex_guard = STORE_MUTEX.lock().unwrap();
359
0 commit comments