diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 8b75e4e5..d23c01f2 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -72,7 +72,7 @@ jobs: # TODO: Why doesn't the "test" target execute tests? - name: Run Unit Tests run: | - ctest --schedule-random --progress --output-on-failure --parallel --no-tests error --build-config ${{ matrix.config }} --test-dir build + ctest --schedule-random --progress --output-on-failure --parallel --no-tests=error --build-config ${{ matrix.config }} --test-dir build - uses: actions/upload-artifact@v4 with: diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index b3b15324..32b99d81 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -69,4 +69,4 @@ jobs: - name: Run Unit Tests shell: bash run: | - ctest --schedule-random --progress --output-on-failure --parallel --no-tests error --build-config ${{ matrix.config }} --test-dir build + ctest --schedule-random --progress --output-on-failure --parallel --no-tests=error --build-config ${{ matrix.config }} --test-dir build diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 6e51be0b..b0d6a43c 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -96,7 +96,7 @@ jobs: # MSVC Generator doesn't support the special target "test" like Ninja generator does on linux. - name: Run Unit Tests run: | - ctest --schedule-random --progress --output-on-failure --parallel --no-tests error --build-config ${{ matrix.config }} --test-dir build + ctest --schedule-random --progress --output-on-failure --parallel --no-tests=error --build-config ${{ matrix.config }} --test-dir build - uses: actions/upload-artifact@v4 with: