From 5d24432c83d4d0528b8602ed2e82512fed351060 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Sun, 3 Aug 2025 10:29:12 -0400 Subject: [PATCH] tests: Add missing `#[serial]` to two tests (#3816) Signed-off-by: Colin Walters --- crates/goose-mcp/src/developer/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/goose-mcp/src/developer/mod.rs b/crates/goose-mcp/src/developer/mod.rs index ca56d8a8bf..7674a642a2 100644 --- a/crates/goose-mcp/src/developer/mod.rs +++ b/crates/goose-mcp/src/developer/mod.rs @@ -3316,6 +3316,7 @@ mod tests { } #[test] + #[serial] fn test_process_shell_output_short() { let dir = TempDir::new().unwrap(); std::env::set_current_dir(dir.path()).unwrap(); @@ -3332,6 +3333,7 @@ mod tests { } #[test] + #[serial] fn test_process_shell_output_empty() { let dir = TempDir::new().unwrap(); std::env::set_current_dir(dir.path()).unwrap();