Skip to content

Commit

Permalink
Bring back VERBOSE_TESTS
Browse files Browse the repository at this point in the history
  • Loading branch information
mathias-luedtke committed Jan 22, 2021
1 parent 8e55496 commit 69576ad
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions industrial_ci/src/builders/catkin_tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ function builder_run_tests {
local extend=$1; shift
local ws=$1; shift
local opts=()
if [ "${VERBOSE_TESTS:-false}" != false ]; then
opts+=(-v)
fi
if [ "$IMMEDIATE_TEST_OUTPUT" == true ]; then
opts+=(-i)
fi
_append_job_opts opts PARALLEL_TESTS 1
ici_exec_in_workspace "$extend" "$ws" catkin build --catkin-make-args run_tests -- "${opts[@]}" --no-status
}
Expand Down

0 comments on commit 69576ad

Please sign in to comment.