devops: upload installation tests to flakienss dashboard (#14007)

This commit is contained in:
Andrey Lushnikov 2022-05-06 20:04:34 -06:00 committed by GitHub
parent b8c4f426cc
commit cde34841a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View File

@ -196,3 +196,6 @@ jobs:
if: matrix.os != 'ubuntu-latest'
- run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- npm run itest
if: matrix.os == 'ubuntu-latest'
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
if: always()
shell: bash

View File

@ -27,6 +27,14 @@ const config: PlaywrightTestConfig = {
reporter: process.env.CI ? 'dot' : [['list'], ['html', { open: 'on-failure' }]],
forbidOnly: !!process.env.CI,
workers: 1,
projects: [
{
name: 'installation tests',
metadata: {
nodejsVersion: process.version,
},
},
],
};
export default config;