diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-03-10 13:33:08 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-03-11 06:38:43 -0500 |
commit | 7d20a639fef3fc3d423037570cd9f1c4d23397d3 (patch) | |
tree | 8bb632b479d282074ea57a2b348edbf94cba6b50 | |
parent | 090e488f6ac6bb65f3e4ae6885b3aa58ce9c867a (diff) | |
download | python-coveragepy-git-7d20a639fef3fc3d423037570cd9f1c4d23397d3.tar.gz |
test: show more information for not-passed tests
-rw-r--r-- | .github/workflows/testsuite.yml | 4 | ||||
-rw-r--r-- | setup.cfg | 2 | ||||
-rw-r--r-- | tests/test_process.py | 2 |
3 files changed, 4 insertions, 4 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() @@ -1,5 +1,5 @@ [tool:pytest] -addopts = -q -n3 --strict --force-flaky --no-flaky-report -rfe --failed-first +addopts = -q -n3 --strict --force-flaky --no-flaky-report -rfeX --failed-first python_classes = *Test markers = expensive: too slow to run during "make smoke" diff --git a/tests/test_process.py b/tests/test_process.py index 0743e14e..43a404d5 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -760,7 +760,7 @@ class ProcessTest(CoverageTest): @xfail( env.PYPY3 and (env.PYPYVERSION >= (7, 1, 1)), - "https://bitbucket.org/pypy/pypy/issues/3074" + "https://foss.heptapod.net/pypy/pypy/-/issues/3074" ) # Jython as of 2.7.1rc3 won't compile a filename that isn't utf8. @pytest.mark.skipif(env.JYTHON, reason="Jython can't handle this test") |