Skip to content

Commit

Permalink
returned retries
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardZaydler committed Feb 12, 2024
1 parent 24c818b commit 5c1915d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Archive artifacts
uses: actions/upload-artifact@v3
if: ${{ always() }}
if: ${{ failure() }}
with:
name: test-results
path: ./test-results
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const config: PlaywrightTestConfig = {

fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: 0,
retries: process.env.CI ? 2 : 1,
workers: process.env.CI ? 1 : undefined,
reporter: process.env.CI ? "github" : [["list"], ["html", { open: "on-failure" }]],
use: {
Expand Down

0 comments on commit 5c1915d

Please sign in to comment.