diff options
-rw-r--r-- | .github/workflows/testsuite.yml | 4 | ||||
-rw-r--r-- | setup.cfg | 2 |
2 files changed, 3 insertions, 3 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() @@ -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" |