We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b2eb093 + de35402 commit c013f20Copy full SHA for c013f20
3 files changed
changelog/13480.bugfix.rst
@@ -0,0 +1 @@
1
+Fixed a few test failures in pytest's own test suite when run with ``-Wdefault`` or a similar override.
testing/test_threadexception.py
@@ -211,7 +211,7 @@ def test_it(request):
211
"""
212
)
213
214
- result = pytester.runpytest()
+ result = pytester.runpytest("-Werror")
215
216
# TODO: should be a test failure or error
217
assert result.ret == pytest.ExitCode.INTERNAL_ERROR
testing/test_warnings.py
@@ -149,6 +149,7 @@ def test_func(fix):
149
150
151
152
+@pytest.mark.skip("issue #13485")
153
def test_works_with_filterwarnings(pytester: Pytester) -> None:
154
"""Ensure our warnings capture does not mess with pre-installed filters (#2430)."""
155
pytester.makepyfile(
0 commit comments