diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4352daff..08629e61 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -399,12 +399,11 @@ jobs: - name: meson test working-directory: iguana_build run: | - [ "${{ matrix.id }}" = "thread-sanitizer" ] && test_suite='multithreading' || test_suite='single_threaded' if [ "${{ env.verbose_test }}" = "true" ]; then [ ${{ inputs.runner }} = "macos-latest" ] && stdbuf_cmd=gstdbuf || stdbuf_cmd=stdbuf - $stdbuf_cmd -o0 meson test --print-errorlogs --verbose --no-stdsplit --suite $test_suite + $stdbuf_cmd -o0 meson test --print-errorlogs --verbose --no-stdsplit else - meson test --print-errorlogs --suite $test_suite + meson test --print-errorlogs fi ### run benchmarks - name: benchmark algorithms