Skip to content
Draft
Changes from 1 commit
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
9 changes: 5 additions & 4 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

- name: Linux - Tests
os: ubuntu-latest
run_in_pr : false
run_in_pr : true
BUILD_DOCS : false
DEPLOY_DOCS : false
PACKAGE : false
Expand All @@ -90,7 +90,7 @@ jobs:

- name: macOS - Tests
os: macos-latest
run_in_pr : false
run_in_pr : true
BUILD_DOCS : false
DEPLOY_DOCS : false
PACKAGE : false
Expand All @@ -114,7 +114,7 @@ jobs:
RUN_TESTS : false

- name: Windows - Tests
run_in_pr : false
run_in_pr : true
os: windows-latest
BUILD_DOCS : false
DEPLOY_DOCS : false
Expand Down Expand Up @@ -267,7 +267,8 @@ jobs:
# Disable MinGW's path conversion, see #1035.
if [ "$RUNNER_OS" == "Windows" ]; then export MSYS_NO_PATHCONV=1; fi
# Run tests
ctest ${CTEST_ARGS} || ctest ${CTEST_ARGS} --rerun-failed || ctest ${CTEST_ARGS} --rerun-failed
ctest ${CTEST_ARGS} -R api
#ctest ${CTEST_ARGS} || ctest ${CTEST_ARGS} --rerun-failed || ctest ${CTEST_ARGS} --rerun-failed
env:
CTEST_ARGS : "--output-on-failure --force-new-ctest-process -j4 --timeout 480"
if: matrix.RUN_TESTS == true && (matrix.run_in_pr == true || github.event_name != 'pull_request')
Expand Down