Skip to content

Commit

Permalink
chore(deps): bump openai from 1.56.0 to 1.56.1 (#5572)
Browse files Browse the repository at this point in the history
* 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](openai/openai-python@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] <[email protected]>

* Adding pause to playwright

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: David Whittaker <[email protected]>
  • Loading branch information
dependabot[bot] and whitdog47 authored Dec 4, 2024
1 parent a7de43d commit 48bc106
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion requirements-base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions tests/static/e2e/pages/auth-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 48bc106

Please sign in to comment.