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 5f126f9 commit 6d129e3Copy full SHA for 6d129e3
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
@@ -360,6 +360,7 @@ fn test_logger(test_name: &str) -> Logger {
360
graph::log::logger(true).new(o!("test" => test_name.to_string()))
361
362
363
364
pub async fn stores(test_name: &str, store_config_path: &str) -> Stores {
365
let _mutex_guard = STORE_MUTEX.lock().unwrap();
366
0 commit comments