From 48bc106baa670212bcda7ba20671bb14c9ea3b31 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Dec 2024 11:43:48 -0800 Subject: [PATCH] chore(deps): bump openai from 1.56.0 to 1.56.1 (#5572) * chore(deps): bump openai from 1.56.0 to 1.56.1 Bumps [openai](https://github.com/openai/openai-python) from 1.56.0 to 1.56.1. - [Release notes](https://github.com/openai/openai-python/releases) - [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md) - [Commits](https://github.com/openai/openai-python/compare/v1.56.0...v1.56.1) --- updated-dependencies: - dependency-name: openai dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * Adding pause to playwright --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: David Whittaker --- playwright.config.ts | 4 ++-- requirements-base.txt | 2 +- tests/static/e2e/pages/auth-page.ts | 2 ++ 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index f86fa7ed8b62..47e5d0f5dd2f 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -18,13 +18,13 @@ const config: PlaywrightTestConfig = { screenshot: "on", }, /* Maximum time one test can run for. */ - timeout: 100 * 1000, + timeout: 200 * 1000, expect: { /** * Maximum time expect() should wait for the condition to be met. * For example in `await expect(locator).toHaveText();` */ - timeout: 10000, + timeout: 20000, }, /* Run tests in files in parallel */ fullyParallel: true, diff --git a/requirements-base.txt b/requirements-base.txt index f51a35cb8cda..d013f7e7d0c2 100644 --- a/requirements-base.txt +++ b/requirements-base.txt @@ -256,7 +256,7 @@ oauthlib[signedtoken]==3.2.2 # atlassian-python-api # jira # requests-oauthlib -openai==1.56.0 +openai==1.56.1 # via -r requirements-base.in packaging==24.2 # via diff --git a/tests/static/e2e/pages/auth-page.ts b/tests/static/e2e/pages/auth-page.ts index 42cb4bed845e..1fc7d1971bf9 100644 --- a/tests/static/e2e/pages/auth-page.ts +++ b/tests/static/e2e/pages/auth-page.ts @@ -52,6 +52,8 @@ export class AuthPage { } async registerNewUser(email: string, password: string) { + // wait for 2 minutes to let server settle + await new Promise(resolve => setTimeout(resolve, 120000)); await this.gotoRegisterWithLink() await this.emailLabel.first().click() await this.emailLabel.fill(email)