chore: Only set max failures for E2E tests that are running on PRs

This commit is contained in:
Florian Zia 2024-09-28 14:33:48 +02:00
Родитель fe0b9b0ae0
Коммит f08483e0b6
Не найден ключ, соответствующий данной подписи
3 изменённых файлов: 2 добавлений и 5 удалений

2
.github/workflows/e2e_cron.yml поставляемый
Просмотреть файл

@ -76,7 +76,7 @@ jobs:
name: test-results
path: src/e2e/test-results/
retention-days: 30
- name: Send GitHub Action trigger data to Slack workflow
id: slack
uses: slackapi/slack-github-action@v1.27.0

2
.github/workflows/e2e_pr_full.yml поставляемый
Просмотреть файл

@ -59,7 +59,7 @@ jobs:
- name: Run Playwright tests
if: github.actor != 'dependabot[bot]'
run: npm run e2e -- --update-snapshots
run: npm run e2e -- --max-failures=1 --update-snapshots
timeout-minutes: 20
env:
E2E_TEST_ENV: local

Просмотреть файл

@ -50,9 +50,6 @@ export default defineConfig({
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Limit the number of failures */
maxFailures: 1,
/* Retry on CI only */
retries: process.env.CI ? 1 : 0,