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.
1 parent f36f9d2 commit be511c1Copy full SHA for be511c1
testing/test_pdb.py
@@ -477,6 +477,7 @@ def test_1():
477
child.expect("Pdb")
478
child.sendline("c")
479
child.expect("x = 4")
480
+ child.expect("Pdb")
481
child.sendeof()
482
rest = child.read().decode("utf8")
483
assert "1 failed" in rest
@@ -495,6 +496,7 @@ def test_pdb_used_outside_test(self, testdir):
495
496
)
497
child = testdir.spawn("{} {}".format(sys.executable, p1))
498
child.expect("x = 5")
499
500
501
self.flush(child)
502
@@ -511,6 +513,7 @@ def test_foo(a):
511
513
512
514
child = testdir.spawn_pytest(str(p1))
515
516
517
518
519
0 commit comments