summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-03-10 13:33:08 -0500
committerNed Batchelder <ned@nedbatchelder.com>2021-03-11 06:38:43 -0500
commit7d20a639fef3fc3d423037570cd9f1c4d23397d3 (patch)
tree8bb632b479d282074ea57a2b348edbf94cba6b50 /.github
parent090e488f6ac6bb65f3e4ae6885b3aa58ce9c867a (diff)
downloadpython-coveragepy-git-7d20a639fef3fc3d423037570cd9f1c4d23397d3.tar.gz
test: show more information for not-passed tests
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/testsuite.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml
index 1e2b9b30..ee304af1 100644
--- a/.github/workflows/testsuite.yml
+++ b/.github/workflows/testsuite.yml
@@ -70,13 +70,13 @@ jobs:
continue-on-error: true
id: tox1
run: |
- python -m tox
+ python -m tox -- -rfeXs
- name: "Retry tox for ${{ matrix.python-version }}"
id: tox2
if: steps.tox1.outcome == 'failure'
run: |
- python -m tox
+ python -m tox -- -rfeXs
- name: "Set status"
if: always()