Mercurial > p > roundup > code
changeset 7542:3b67f0e7fe48
I give up.
Moving it after the strategy produces:
Error when evaluating 'continue-on-error' for job
'test'. .github/workflows/ci-test.yml (Line: 78, Col: 24): Unexpected
value ''
Comment out 3.12 run, continue directive and push.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 13 Jul 2023 20:16:44 -0400 |
| parents | 72e1ee3a46c0 |
| children | fc9daba984c0 |
| files | .github/workflows/ci-test.yml |
| diffstat | 1 files changed, 6 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/.github/workflows/ci-test.yml Thu Jul 13 20:14:02 2023 -0400 +++ b/.github/workflows/ci-test.yml Thu Jul 13 20:16:44 2023 -0400 @@ -61,9 +61,9 @@ include: # example: if 3.12 fails the jobs still succeeds - - python-version: 3.12 - os: ubuntu-22.04 - experimental: true + #- python-version: 3.12 + # os: ubuntu-22.04 + # experimental: true # 3.6 not available on new 22.04 runners, so run on 20.04 ubuntu - python-version: 3.6 @@ -75,7 +75,9 @@ # run the finalizer for coveralls even if one or more # experimental matrix runs fail. - continue-on-error: ${{ matrix.experimental }} + # moving it above strategy produces unexpected value false + # moving it below (here) produces unexpected value ''. + # continue-on-error: ${{ matrix.experimental }} env: # get colorized pytest output even without a controlling tty
