fix: increase timeout for test_dev_null_write

This commit is contained in:
Michael Bolin
2025-05-14 10:03:32 -07:00
parent 327cf41f0f
commit d1d918f09a

View File

@@ -194,7 +194,14 @@ mod tests {
#[tokio::test]
async fn test_dev_null_write() {
run_cmd(&["bash", "-lc", "echo blah > /dev/null"], &[], 200).await;
run_cmd(
&["bash", "-lc", "echo blah > /dev/null"],
&[],
// We have seen timeouts when running this test in CI on GitHub,
// so we are using a generous timeout until we can diagnose further.
1_000,
)
.await;
}
#[tokio::test]