From a89dbe381353faa31d0a89a50b82d9bc3222a0af Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Thu, 1 Feb 2024 09:17:48 -0800 Subject: [PATCH] devops: custom blob report name for test runner tests (#29280) Otherwise uploaded reports all have clashing names report-1.zip and report-2.zip. --- tests/playwright-test/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright-test/playwright.config.ts b/tests/playwright-test/playwright.config.ts index 02a87efa10..8536ed992e 100644 --- a/tests/playwright-test/playwright.config.ts +++ b/tests/playwright-test/playwright.config.ts @@ -25,7 +25,7 @@ const reporters = () => { const result: ReporterDescription[] = process.env.CI ? [ ['dot'], ['json', { outputFile: path.join(outputDir, 'report.json') }], - ['blob', { outputDir: path.join(__dirname, '..', '..', 'blob-report') }], + ['blob', { outputDir: path.join(__dirname, '..', '..', 'blob-report'), fileName: `${process.env.PWTEST_BOT_NAME}.zip` }], ] : [ ['list'] ];