diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2020-11-29 13:30:05 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2020-11-29 13:30:05 -0500 |
| commit | ec12a5465a999281c66998c8e3b8645dfacc5937 (patch) | |
| tree | 72c2304dc09db551cada847ef9c1c2ffbe2edecb | |
| parent | e02393706c5c15df1d2797e48eb65479773057e3 (diff) | |
| download | python-coveragepy-git-nedbat/overeengineered-tox-retries.tar.gz | |
Continue on errornedbat/overeengineered-tox-retries
| -rw-r--r-- | .github/workflows/testsuite.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index 034ad3b9..85072d7e 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -63,8 +63,8 @@ jobs: python -m pip install -c requirements/pins.pip tox-gh-actions - name: "Run tox for ${{ matrix.python-version }}" - continue-on-error: true id: tox1 + continue-on-error: true run: | python -m tox tox_status=$? @@ -76,6 +76,7 @@ jobs: - name: "Retry tox for ${{ matrix.python-version }}" id: tox2 + continue-on-error: true if: steps.tox1.outcome == 'failure' run: | python -m tox @@ -87,6 +88,7 @@ jobs: - name: "Retry tox again for ${{ matrix.python-version }}" id: tox3 + continue-on-error: true if: steps.tox2.outcome == 'failure' run: | python -m tox |
