Skip to content

Commit 50316ca

Browse files
Your Nameclaude
andcommitted
test(watcher): bump flaky CI timeout from 15s to 30s
watcher_reindexes_add_and_delete intermittently failed on CI's shared runners (timed out waiting for the fs-event-driven reindex), observed on two unrelated commits with unrelated changes in between passing normally -- runner-load flakiness, not a real regression. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
1 parent 2125cbd commit 50316ca

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crates/ci-server/tests/watcher_integration.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ fn watcher_reindexes_add_and_delete() {
6666

6767
// Add a file → watcher should incrementally index it.
6868
std::fs::write(dir.join("b.py"), "def b():\n pass\n").unwrap();
69-
let added = wait_for_symbols(&db_path, 2, Duration::from_secs(15));
69+
let added = wait_for_symbols(&db_path, 2, Duration::from_secs(30));
7070

7171
// Delete it → watcher should drop its symbol.
7272
std::fs::remove_file(dir.join("b.py")).unwrap();
73-
let removed = wait_for_symbols(&db_path, 1, Duration::from_secs(15));
73+
let removed = wait_for_symbols(&db_path, 1, Duration::from_secs(30));
7474

7575
ct.cancel();
7676
let _ = handle.join();

0 commit comments

Comments
 (0)