Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions news/2 Fixes/12833.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
The change in PR #12795 led to one particular test suite to take longer
to run. Here we increase the timeout for that suite to get the test
passing.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ class Venvs {
}
}

const timeoutMs = IS_CI_SERVER ? 60_000 : 15_000;
const baseTimeoutMs = 30_000;
const timeoutMs = IS_CI_SERVER ? baseTimeoutMs * 4 : baseTimeoutMs;
suite('Interpreters - Workspace VirtualEnv Service', function () {
this.timeout(timeoutMs);
this.retries(0);
Expand Down