Skip to content

Commit 13c92c7

Browse files
Try to fix flaky tests
1 parent baada3b commit 13c92c7

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/osrm-backend.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -575,8 +575,12 @@ jobs:
575575
576576
# All tests assume to be run from the build directory
577577
pushd ${OSRM_BUILD_DIR}
578-
for i in $(seq 1 1000); do
579-
./unit_tests/library-tests
578+
for i in $(seq 1 100); do
579+
echo "Iteration $i"
580+
for test in ./unit_tests/*-tests; do
581+
echo "Running $test"
582+
$test
583+
done
580584
done
581585
if [ -z "${ENABLE_SANITIZER}" ]; then
582586
npm run nodejs-tests

0 commit comments

Comments
 (0)