Multiple coverage numbers in job output log

Hi,

I have a test stage which runs several configurations of our IP(hardware verification). Each configuration generates information about coverage. So my output log looks like this(pseudocode):
Running: conf1
rundir: …
test1: ok
test2: ok

Total coverage: 98.08%

Running: conf2
rundir: …
test1: ok
test2: ok

Total coverage: 99.08%

When the job is finished I see that only last occurrence of coverage string is extracted: 99.08% in job summary. I would like to see all occurrences extracted but I am not sure if it is currently supported.
This is the beginning of my test stage:
test:
stage: test
coverage: ‘/Total coverage: \d+.\d+%/’

Thanks,
Pavel

1 Like