Skip to content

Commit

Permalink
test(build): i've had the wrong -r character this whole time
Browse files Browse the repository at this point in the history
E means show summary of errors.  e means nothing. :(
  • Loading branch information
nedbat committed Nov 24, 2021
1 parent f0c8797 commit 0865590
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt

[tool:pytest]
addopts = -q -n auto --strict-markers --no-flaky-report -rfeX --failed-first
addopts = -q -n auto --strict-markers --no-flaky-report -rfEX --failed-first
python_classes = *Test
markers =
expensive: too slow to run during "make smoke"
Expand Down

0 comments on commit 0865590

Please sign in to comment.