Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test_free.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ jobs:
# are manually excluding each integration test by name
- name: Run v4 tests
if: ${{ matrix.version == 4 }}
run: ctest -j2 --output-on-failure --schedule-random -E "density evolution"
run: ctest -j2 --output-on-failure --schedule-random -C Release -E "density evolution"
working-directory: ${{ env.build_dir }}

# run v3 unit tests in random order
- name: Run v3 tests
if: ${{ matrix.version == 3 }}
run: ctest -j2 --output-on-failure --schedule-random
run: ctest -j2 --output-on-failure --schedule-random -C Release
working-directory: ${{ env.depr_dir }}
Loading