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
Next Next commit
Explicitly exclude files which failed to lint/parse
  • Loading branch information
hugovk committed Sep 13, 2023
commit 9ee16cc53d3a152bf28732f5b8ae2686d8b10e9a
10 changes: 9 additions & 1 deletion Lib/test/.ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,15 @@ select = [
"F811", # Redefinition of unused variable (useful for finding test methods with the same name)
]
extend-exclude = [
# # TODO Fix: F811 Redefinition of unused name
# Failed to lint
"badsyntax_pep3120.py",
"encoded_modules/module_iso_8859_1.py",
"encoded_modules/module_koi8_r.py",
"test_source_encoding.py",
# Failed to parse
"badsyntax_3131.py",
"test_fstring.py",
# TODO Fix: F811 Redefinition of unused name
"test_buffer.py",
"test_dataclasses.py",
"test_descr.py",
Expand Down