increase python installation timeout to 5min (#17019)

This commit is contained in:
Lucy Zhang
2021-09-08 09:24:37 -04:00
committed by GitHub
parent 73ee6c3844
commit 9389ec9101

View File

@@ -51,7 +51,7 @@ export class ConfigurePythonDialog extends Dialog {
private async _waitForInstallationComplete(): Promise<void> {
const installationCompleteNotification = '.notifications-toasts div[aria-label="Notebook dependencies installation is complete, source: Notebook Core Extensions (Extension), notification"]';
await this.code.waitForElement(installationCompleteNotification, undefined, 600); // wait up to 1 minute for python installation
await this.code.waitForElement(installationCompleteNotification, undefined, 3000); // wait up to 5 minutes for python installation
}
}