Skip to content

Commit abf48b9

Browse files
committed
test script
1 parent a519bde commit abf48b9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/playwright.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
STACKABLE_SLUG: Stackable/plugin
3636
run: npm run test
3737
- name: Run script to unzip and upload traces
38+
if: ${{ !cancelled() }}
3839
run: |
3940
chmod +x ./.github/scripts/unzip_traces.sh
4041
./.github/scripts/unzip_traces.sh

e2e/playwright.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ export default defineConfig( {
2323
/* Fail the build on CI if you accidentally left test.only in the source code. */
2424
// forbidOnly: !! process.env.CI,
2525
/* Retry on CI only */
26-
retries: process.env.CI ? 2 : 0,
26+
// retries: process.env.CI ? 2 : 0,
27+
retries: 0,
2728
// Locally, we could take advantage of parallelism due to multicore systems.
2829
// However, in the CI, we typically can use only one worker at a time.
2930
// It's more straightforward to align how we run tests in both systems.

0 commit comments

Comments
 (0)