Mercurial > p > roundup > code
diff .github/workflows/ci-test.yml @ 7541:72e1ee3a46c0
one last try move continue-on-error after all matrix defs
rather than before.
[skip travis]
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 13 Jul 2023 20:14:02 -0400 |
| parents | aa79c91f913a |
| children | 3b67f0e7fe48 |
line wrap: on
line diff
--- a/.github/workflows/ci-test.yml Thu Jul 13 20:11:41 2023 -0400 +++ b/.github/workflows/ci-test.yml Thu Jul 13 20:14:02 2023 -0400 @@ -32,10 +32,6 @@ test: name: CI build test - # run the finalizer for coveralls even if one or more - # experimental matrix runs fail. - continue-on-error: ${{ matrix.experimental }} - #runs-on: ubuntu-latest # use below if running on multiple OS's. runs-on: ${{ matrix.os }} @@ -77,6 +73,10 @@ # skip all python versions on 20.04 except explicitly included - os: ubuntu-20.04 + # run the finalizer for coveralls even if one or more + # experimental matrix runs fail. + continue-on-error: ${{ matrix.experimental }} + env: # get colorized pytest output even without a controlling tty PYTEST_ADDOPTS: "--color=yes"
