Skip to content

Commit

Permalink
Increase number of public API test tries
Browse files Browse the repository at this point in the history
  • Loading branch information
sjanel committed Oct 21, 2021
1 parent ed9c0ed commit efe0a57
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ jobs:
- name: Local Tests
run: ctest --test-dir build --output-on-failure --exclude-regex api_test

- name: Public API Tests # Tries up to 3 times to avoid random timeout errors not coming from coincenter
run: ctest --test-dir build --output-on-failure --tests-regex api_test --repeat until-pass:3
- name: Public API Tests # Tries several times to avoid random timeout errors not coming from coincenter
run: ctest --test-dir build --output-on-failure --tests-regex api_test --repeat until-pass:10
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
shell: bash
run: ctest -j 2 -C ${{matrix.buildmode}} --output-on-failure --exclude-regex api_test

- name: Public API Tests # Tries up to 3 times to avoid random timeout errors not coming from coincenter
- name: Public API Tests # Tries several times to avoid random timeout errors not coming from coincenter
working-directory: ${{github.workspace}}/build
shell: bash
run: ctest -j 2 -C ${{matrix.buildmode}} --output-on-failure --tests-regex api_test --repeat until-pass:3
run: ctest -j 2 -C ${{matrix.buildmode}} --output-on-failure --tests-regex api_test --repeat until-pass:10
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ jobs:
working-directory: ${{github.workspace}}/build
run: ctest -C ${{matrix.buildmode}} --output-on-failure --exclude-regex api_test

- name: Public API Tests # Tries up to 3 times to avoid random timeout errors not coming from coincenter
- name: Public API Tests # Tries several times to avoid random timeout errors not coming from coincenter
working-directory: ${{github.workspace}}/build
run: ctest -C ${{matrix.buildmode}} --output-on-failure --tests-regex api_test --repeat until-pass:3
run: ctest -C ${{matrix.buildmode}} --output-on-failure --tests-regex api_test --repeat until-pass:10

0 comments on commit efe0a57

Please sign in to comment.