Merge branch 'add-pytest-reports' into 'master'

Add pytest.xml files to reports

See merge request ros_tracing/ros2_tracing!31
This commit is contained in:
Christophe Bedard 2019-06-26 08:29:03 +00:00
commit cc69b63e58

View file

@ -16,12 +16,15 @@ before_script:
# script: # script:
# - colcon build --symlink-install --packages-up-to $PACKAGES_LIST # - colcon build --symlink-install --packages-up-to $PACKAGES_LIST
# - colcon test --packages-select $PACKAGES_LIST # - colcon test --packages-select $PACKAGES_LIST
# artifacts: # artifacts:
# paths: # paths:
# - install # - install
# - build/*/test_results/*/*.xunit.xml # - build/*/test_results/*/*.xunit.xml
# reports: # - build/*/pytest.xml
# junit: build/*/test_results/*/*.xunit.xml # reports:
# junit:
# - build/*/test_results/*/*.xunit.xml
# - build/*/pytest.xml
build_enabled: build_enabled:
script: script:
@ -31,5 +34,8 @@ build_enabled:
paths: paths:
- install - install
- build/*/test_results/*/*.xunit.xml - build/*/test_results/*/*.xunit.xml
- build/*/pytest.xml
reports: reports:
junit: build/*/test_results/*/*.xunit.xml junit:
- build/*/test_results/*/*.xunit.xml
- build/*/pytest.xml