diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index b83b37bb5..50b7e320a 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() diff --git a/setup.cfg b/setup.cfg index c22663624..07697a942 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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"