Skip to content
Snippets Groups Projects
Commit bb3d9f3c authored by Benny Baumann's avatar Benny Baumann
Browse files

cfg: Enable Unit Test Reports

parent 8c3cfe18
No related branches found
No related tags found
No related merge requests found
Pipeline #10732 failed
......@@ -62,6 +62,13 @@ test:bsd:
script:
- make test
- echo Successfully tested.
artifacts:
when: always
paths:
- bin/test/*.xml
reports:
junit:
- bin/test/*.xml
test:deb:
stage: testing
......@@ -71,3 +78,10 @@ test:deb:
- make lintian
- make test
- echo Successfully tested.
artifacts:
when: always
paths:
- bin/test/*.xml
reports:
junit:
- bin/test/*.xml
......@@ -157,7 +157,11 @@ lintian:
test: ${TEST_TARGETS}
for a in ${TEST_TARGETS}; do \
echo $$a; \
$$a; \
$$a \
--report_format=XML --report_level=detailed --report_sink="$$a.unit.xml" \
--report_memory_leaks_to="$$a.memleak.xml" \
--log_format=XML --log_level=all --log_sink="$$a.log.xml" \
; \
done
install:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment