Skip to content
Snippets Groups Projects
Verified Commit a72769c6 authored by Michal Hrusecky's avatar Michal Hrusecky :mouse:
Browse files

.gitlab-ci.yml: Show junit output to stdout as well

parent 7518c738
No related merge requests found
image: "$CI_REGISTRY_IMAGE"
basic:
script: BATS_LIB_PATH="/root/bats" tests/help-and-version.bats -F junit > report.xml
script: BATS_LIB_PATH="/root/bats" tests/help-and-version.bats -F junit | tee report.xml
artifacts:
reports:
junit: report.xml
......@@ -11,7 +11,7 @@ local:
- dind
script:
- sh -c 'for i in `seq 0 9`; do [ -e /dev/loop$i ] || mknod /dev/loop$i b 7 $i; done'
- BATS_LIB_PATH="/root/bats" tests/local-tests.bats -F junit > report.xml
- BATS_LIB_PATH="/root/bats" tests/local-tests.bats -F junit | tee report.xml
artifacts:
reports:
junit: report.xml
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment