Skip to content

Commit 723a238

Browse files
increase timeout (#8934)
1 parent 977224b commit 723a238

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build/ci/vscode-python-nightly-flake-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ stages:
3838
jobs:
3939
- job: 'Test'
4040
dependsOn: []
41-
timeoutInMinutes: 180
41+
timeoutInMinutes: 240
4242
strategy:
4343
matrix:
4444
# Each member of this list must contain these values:

src/test/datascience/nativeEditor.functional.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,8 @@ for _ in range(50):
259259
const exportButton = findButton(wrapper, NativeEditor, 9);
260260
await waitForMessageResponse(ioc, () => exportButton!.simulate('click'));
261261

262-
// This can be slow, hence wait for a max of 15.
263-
await waitForPromise(activeTextEditorChange.promise, 15_000);
262+
// This can be slow, hence wait for a max of 60.
263+
await waitForPromise(activeTextEditorChange.promise, 60_000);
264264

265265
// Verify the new document is valid python
266266
const newDoc = docManager.activeTextEditor;

0 commit comments

Comments
 (0)