Merge branch 'use-verbose-option-for-test-result' into 'master'

Use --verbose option with colcon test-result

See merge request micro-ROS/ros_tracing/tracetools_analysis!84
This commit is contained in:
Christophe Bedard 2020-08-30 14:49:35 +00:00
commit df5c4c9fd3

View file

@ -31,7 +31,7 @@ build:
script: script:
- colcon build --symlink-install --event-handlers console_cohesion+ --packages-up-to $PACKAGES_LIST - colcon build --symlink-install --event-handlers console_cohesion+ --packages-up-to $PACKAGES_LIST
- colcon test --event-handlers console_cohesion+ --packages-select $PACKAGES_LIST - colcon test --event-handlers console_cohesion+ --packages-select $PACKAGES_LIST
- colcon test-result --all - colcon test-result --all --verbose
<<: *global_artifacts <<: *global_artifacts
coverage: coverage:
@ -41,7 +41,7 @@ coverage:
- pip3 install -U codecov - pip3 install -U codecov
- colcon build --symlink-install --event-handlers console_cohesion+ --packages-up-to $PACKAGES_LIST --mixin coverage-pytest --cmake-args -DBUILD_TESTING=ON --no-warn-unused-cli - colcon build --symlink-install --event-handlers console_cohesion+ --packages-up-to $PACKAGES_LIST --mixin coverage-pytest --cmake-args -DBUILD_TESTING=ON --no-warn-unused-cli
- colcon test --event-handlers console_cohesion+ --packages-select $PACKAGES_LIST --mixin coverage-pytest - colcon test --event-handlers console_cohesion+ --packages-select $PACKAGES_LIST --mixin coverage-pytest
- colcon test-result --all - colcon test-result --all --verbose
- colcon coveragepy-result --packages-select $PACKAGES_LIST --verbose --coverage-report-args -m - colcon coveragepy-result --packages-select $PACKAGES_LIST --verbose --coverage-report-args -m
- codecov --file coveragepy/.coverage - codecov --file coveragepy/.coverage
allow_failure: true allow_failure: true