Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'add_tests' into update_simple_packages_1
  • Loading branch information
terryluan12 committed Dec 30, 2025
commit 93b6f3377cd9e5f744b6cf3c463ffdd958393190
9 changes: 5 additions & 4 deletions Lib/test/test_bdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ def test_step_next_on_last_statement(self):
with TracerRun(self) as tracer:
tracer.runcall(tfunc_main)

@unittest.skip("TODO: RUSTPYTHON")
@unittest.skip('TODO: RUSTPYTHON')
# AssertionError: All paired tuples have not been processed, the last one was number 1 [('next',), ('quit',)]
def test_stepinstr(self):
self.expect_set = [
Expand All @@ -626,7 +626,8 @@ def test_stepinstr(self):
]
with TracerRun(self) as tracer:
tracer.runcall(tfunc_main)
@unittest.skip("TODO: RUSTPYTHON, Error in atexit._run_exitfuncs")

@unittest.skip('TODO: RUSTPYTHON; Error in atexit._run_exitfuncs')
def test_next(self):
self.expect_set = [
('line', 2, 'tfunc_main'), ('step', ),
Expand Down Expand Up @@ -740,7 +741,7 @@ def test_until_in_caller_frame(self):
with TracerRun(self) as tracer:
tracer.runcall(tfunc_main)

@unittest.skip("TODO: RUSTPYTHON, Error in atexit._run_exitfuncs")
@unittest.skip('TODO: RUSTPYTHON; Error in atexit._run_exitfuncs')
@patch_list(sys.meta_path)
def test_skip(self):
# Check that tracing is skipped over the import statement in
Expand Down Expand Up @@ -1248,7 +1249,7 @@ def main():
with TracerRun(self) as tracer:
tracer.runcall(tfunc_import)

@unittest.skip("TODO: RUSTPYTHON")
@unittest.skip('TODO: RUSTPYTHON')
# AssertionError: All paired tuples have not been processed, the last one was number 1 [('next',)]
def test_next_to_botframe(self):
# gh-125422
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.