Skip to content

Commit cb9911c

Browse files
committed
chore: extend the test timeout to accomodate slow GitHub CI runners
Signed-off-by: R. Tyler Croy <[email protected]>
1 parent 5cc2e19 commit cb9911c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/helpers/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ pub fn wait_until_file_created(path: &FilePath) {
356356
let poll_time = now - start_time;
357357
std::thread::sleep(Duration::from_secs(1));
358358

359-
if poll_time > chrono::Duration::seconds(180) {
359+
if poll_time > chrono::Duration::seconds(300) {
360360
panic!("File was not created before timeout");
361361
}
362362
}

0 commit comments

Comments
 (0)