Forum Discussion

El-Jodi's avatar
El-Jodi
Occasional Contributor
22 days ago

Show test suite name in gitlab tests reports

Hi community,

we are using the readyapi testrunner via docker file in our gitlab ci/cd environment. In order to get a better view of the failled test runs, we edit the yaml using the command line parameters , so that the results not only show as lof file but also in the "tests" tab of the pipeline:

unfortunately there seems to be no way to get the test suite name to be shown in the "suite" column

does any body have an idea what could be missing in the yaml?

variables:
.....
COMMAND_LINE: " '-f./reports/' '-j' ./"
run:
....
stage: test
script:
- "/bin/sh -c $WORKING_FOLDER/EntryPoint.sh"
artifacts:
when: always
reports:
junit: reports/*.xml
paths:
- "./reports"
expire_in: 1 week

Thanks for your feedback in advance

Regards