From c83d26496960e2a6d52684617426631c3a488aa3 Mon Sep 17 00:00:00 2001 From: J Robert Ray Date: Tue, 11 Nov 2025 14:25:00 -0800 Subject: [PATCH] Prevent config from changing during this test If a parallel test changes the config to use legacy encoding then this test will fail when trying to write a layer with blob annotation. Signed-off-by: J Robert Ray Signed-off-by: J Robert Ray --- crates/spfs/src/check_test.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/spfs/src/check_test.rs b/crates/spfs/src/check_test.rs index 5bf70fb32..2387080dd 100644 --- a/crates/spfs/src/check_test.rs +++ b/crates/spfs/src/check_test.rs @@ -253,6 +253,8 @@ impl CheckReporter for &DebugReporter { /// The check should complete successfully and report a missing object. #[rstest] #[tokio::test] +// This test just needs the config to not change while it is running. +#[serial_test::serial(config)] async fn check_missing_annotation_blob(#[future] tmprepo: TempRepo) { init_logging(); let tmprepo = tmprepo.await;