From 2d367396bfec10e27e0f8e741be51d67bbb99f2e Mon Sep 17 00:00:00 2001 From: Tomas Baca Date: Thu, 14 Mar 2024 07:30:13 +0100 Subject: [PATCH] fixed test script --- .ci/test.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.ci/test.sh b/.ci/test.sh index 76f513e02e..a843ce87ed 100755 --- a/.ci/test.sh +++ b/.ci/test.sh @@ -105,9 +105,10 @@ ulimit -c unlimited cd $WORKSPACE/src/$REPOSITORY_NAME ROS_DIRS=$(find . -name package.xml -printf "%h\n") +FAILED=0 + for DIR in $ROS_DIRS; do cd $WORKSPACE/src/$REPOSITORY_NAME/$DIR - FAILED=0 catkin test --limit-status-rate 0.2 --this -p 1 -s || FAILED=1 done