diff --git a/.github/workflows/tests_service.yml b/.github/workflows/tests_service.yml index 7fb14d423a..ffe1a0bf4c 100644 --- a/.github/workflows/tests_service.yml +++ b/.github/workflows/tests_service.yml @@ -23,7 +23,7 @@ jobs: env: PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 - run: npm run build - - run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- npm run test -- --project=${{ matrix.browser }} --workers=10 + - run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- npm run test -- --project=${{ matrix.browser }} --workers=20 --retries=0 env: PWTEST_MODE: service2 PLAYWRIGHT_SERVICE_ACCESS_KEY: ${{ secrets.PLAYWRIGHT_SERVICE_ACCESS_KEY }} diff --git a/tests/library/chromium/tracing.spec.ts b/tests/library/chromium/tracing.spec.ts index 07bfdec534..80465479aa 100644 --- a/tests/library/chromium/tracing.spec.ts +++ b/tests/library/chromium/tracing.spec.ts @@ -18,6 +18,8 @@ import { browserTest as it, expect } from '../../config/browserTest'; import fs from 'fs'; import path from 'path'; +it.skip(({ mode }) => mode === 'service2', 'Fixed in v1.37'); + it('should output a trace', async ({ browser, server }, testInfo) => { const page = await browser.newPage(); const outputTraceFile = testInfo.outputPath(path.join(`trace.json`));