ci: junit reporter adjustments (#3324)

This commit is contained in:
Erick Zhao 2023-08-30 14:52:38 -07:00 коммит произвёл GitHub
Родитель 478d4a4745
Коммит 9ab274d3e6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -129,6 +129,13 @@ jobs:
libgtk-3-0 \
libgbm1
- run-slow-tests
- run:
when: always # the report is generated on pass or fail
name: Make test report paths relative
command: |
if [ -e ./reports/out/test_output.xml ]; then
sed -i.bak "s|`pwd`/||g" ./reports/out/test_output.xml
fi
- store_test_results:
path: ./reports/

Просмотреть файл

@ -31,7 +31,7 @@ if (args.length === 0) {
const reporterConfig = process.env.CI
? {
reporter: 'mocha-junit-reporter',
'reporter-option': ['mochaFile=./reports/test_output.xml'],
'reporter-option': ['mochaFile=./reports/out/test_output.xml'],
}
: {};