parent
96412d19ab
commit
d6b837e2d3
|
@ -353,6 +353,7 @@ class TestPDB:
|
||||||
result = pytester.runpytest_subprocess("--pdb", ".")
|
result = pytester.runpytest_subprocess("--pdb", ".")
|
||||||
result.stdout.fnmatch_lines(["-> import unknown"])
|
result.stdout.fnmatch_lines(["-> import unknown"])
|
||||||
|
|
||||||
|
@pytest.mark.xfail(reason="#10042")
|
||||||
def test_pdb_interaction_capturing_simple(self, pytester: Pytester) -> None:
|
def test_pdb_interaction_capturing_simple(self, pytester: Pytester) -> None:
|
||||||
p1 = pytester.makepyfile(
|
p1 = pytester.makepyfile(
|
||||||
"""
|
"""
|
||||||
|
@ -521,6 +522,7 @@ class TestPDB:
|
||||||
assert "BdbQuit" not in rest
|
assert "BdbQuit" not in rest
|
||||||
assert "UNEXPECTED EXCEPTION" not in rest
|
assert "UNEXPECTED EXCEPTION" not in rest
|
||||||
|
|
||||||
|
@pytest.mark.xfail(reason="#10042")
|
||||||
def test_pdb_interaction_capturing_twice(self, pytester: Pytester) -> None:
|
def test_pdb_interaction_capturing_twice(self, pytester: Pytester) -> None:
|
||||||
p1 = pytester.makepyfile(
|
p1 = pytester.makepyfile(
|
||||||
"""
|
"""
|
||||||
|
@ -556,6 +558,7 @@ class TestPDB:
|
||||||
assert "1 failed" in rest
|
assert "1 failed" in rest
|
||||||
self.flush(child)
|
self.flush(child)
|
||||||
|
|
||||||
|
@pytest.mark.xfail(reason="#10042")
|
||||||
def test_pdb_with_injected_do_debug(self, pytester: Pytester) -> None:
|
def test_pdb_with_injected_do_debug(self, pytester: Pytester) -> None:
|
||||||
"""Simulates pdbpp, which injects Pdb into do_debug, and uses
|
"""Simulates pdbpp, which injects Pdb into do_debug, and uses
|
||||||
self.__class__ in do_continue.
|
self.__class__ in do_continue.
|
||||||
|
@ -1000,6 +1003,7 @@ class TestDebuggingBreakpoints:
|
||||||
assert "reading from stdin while output" not in rest
|
assert "reading from stdin while output" not in rest
|
||||||
TestPDB.flush(child)
|
TestPDB.flush(child)
|
||||||
|
|
||||||
|
@pytest.mark.xfail(reason="#10042")
|
||||||
def test_pdb_not_altered(self, pytester: Pytester) -> None:
|
def test_pdb_not_altered(self, pytester: Pytester) -> None:
|
||||||
p1 = pytester.makepyfile(
|
p1 = pytester.makepyfile(
|
||||||
"""
|
"""
|
||||||
|
@ -1159,6 +1163,7 @@ def test_quit_with_swallowed_SystemExit(pytester: Pytester) -> None:
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize("fixture", ("capfd", "capsys"))
|
@pytest.mark.parametrize("fixture", ("capfd", "capsys"))
|
||||||
|
@pytest.mark.xfail(reason="#10042")
|
||||||
def test_pdb_suspends_fixture_capturing(pytester: Pytester, fixture: str) -> None:
|
def test_pdb_suspends_fixture_capturing(pytester: Pytester, fixture: str) -> None:
|
||||||
"""Using "-s" with pytest should suspend/resume fixture capturing."""
|
"""Using "-s" with pytest should suspend/resume fixture capturing."""
|
||||||
p1 = pytester.makepyfile(
|
p1 = pytester.makepyfile(
|
||||||
|
|
Loading…
Reference in New Issue