more workers

This commit is contained in:
Elio Bischof
2025-06-19 09:06:41 +02:00
parent 511966e305
commit 290e045fd7
2 changed files with 1 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ jobs:
key: login-run-caches-${{ github.ref == 'refs/heads/main' && 'latest' || fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }}
restore-keys: login-run-caches-latest
- name: Clean up Run Caches
# if: ${{ github.event.inputs.clean-run-caches == 'true' }}
if: ${{ github.event.inputs.clean-run-caches == 'true' }}
run: make clean-run-caches
- name: Show Run Caches
run: make show-run-caches

View File

@@ -24,8 +24,6 @@ export default defineConfig({
},
timeout: 300 * 1000, // 5 minutes
globalTimeout: 30 * 60_000, // 30 minutes
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: [["line"], ["html", { open: process.env.CI ? "never" : "on-failure" , host: "0.0.0.0" }]],
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */