devops: custom blob report name for test runner tests (#29280)
Otherwise uploaded reports all have clashing names report-1.zip and report-2.zip.
This commit is contained in:
parent
cf6549687c
commit
a89dbe3813
|
|
@ -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']
|
||||
];
|
||||
|
|
|
|||
Loading…
Reference in a new issue