Skip to content
Merged
Changes from 1 commit
Commits
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
Auto-format: ruff format
  • Loading branch information
github-actions[bot] committed Jan 16, 2026
commit 6120f6a1dfaa0294e14d331c8607fca0db27c3a4
4 changes: 3 additions & 1 deletion scripts/auto_mark_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,9 @@ def is_super_call_only(func_node: ast.FunctionDef | ast.AsyncFunctionDef) -> boo
return True


def remove_expected_failures(contents: str, tests_to_remove: set[tuple[str, str]]) -> str:
def remove_expected_failures(
contents: str, tests_to_remove: set[tuple[str, str]]
) -> str:
"""Remove @unittest.expectedFailure decorators from tests that now pass."""
if not tests_to_remove:
return contents
Expand Down
Loading