Skip to content

Commit

Permalink
Add workflow step to test expected test failures (#5023)
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF authored Oct 28, 2024
1 parent 60dd852 commit cad28e9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/nvhpc-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,13 @@ jobs:
ctest . -E "MPI_TEST|H5TEST-dt_arith|H5TEST-dtransform" --parallel 2 -C ${{ inputs.build_mode }} -V
working-directory: ${{ runner.workspace }}/build

- name: CMake Run Expected To Fail Tests
shell: bash
run: |
ctest . -R "H5TEST-dt_arith|H5TEST-dtransform" --parallel 2 -C ${{ inputs.build_mode }} -V
working-directory: ${{ runner.workspace }}/build
continue-on-error: true

- name: CMake Run Parallel Tests
shell: bash
run: |
Expand Down

0 comments on commit cad28e9

Please sign in to comment.