diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2021-11-24 08:28:40 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-11-24 08:28:40 -0500 |
| commit | 08655902e365c6f118ca625eae04bacc9d344cef (patch) | |
| tree | 25a622f9650eae01f93d6a8310314a05c599fe13 /.github/workflows | |
| parent | f0c8797846290e3fc466793aa0930eb79e1eeffc (diff) | |
| download | python-coveragepy-git-08655902e365c6f118ca625eae04bacc9d344cef.tar.gz | |
test(build): i've had the wrong -r character this whole time
E means show summary of errors. e means nothing. :(
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/testsuite.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index b83b37bb..50b7e320 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -68,13 +68,13 @@ jobs: continue-on-error: true id: tox1 run: | - python -m tox -- -rfeXs + python -m tox -- -rfsEX - name: "Retry tox for ${{ matrix.python-version }}" id: tox2 if: steps.tox1.outcome == 'failure' run: | - python -m tox -- -rfeXs + python -m tox -- -rfsEX - name: "Set status" if: always() |
