8000 gh-60283: Check for redefined test names in CI by hugovk · Pull Request #109161 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-60283: Check for redefined test names in CI #109161

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Sep 12, 2023
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
Temporarily exclude files with: F811 Redefinition of unused name
  • Loading branch information
hugovk committed Sep 8, 2023
commit a37828c3fe17852c597df913f7c0dff29b12f136
17 changes: 17 additions & 0 deletions .ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,21 @@ extend-exclude = [
"Lib/test/test_type_aliases.py",
"Lib/test/test_type_params.py",
"Lib/test/test_typing.py",
# TODO Fix: F811 Redefinition of unused name
"Lib/test/test__opcode.py",
"Lib/test/test_buffer.py",
"Lib/test/test_ctypes/test_arrays.py",
"Lib/test/test_ctypes/test_functions.py",
"Lib/test/test_dataclasses/__init__.py",
"Lib/test/test_descr.py",
"Lib/test/test_enum.py",
"Lib/test/test_genericclass.py",
"Lib/test/test_grammar.py",
"Lib/test/test_import/__init__.py",
"Lib/test/test_keywordonlyarg.py",
"Lib/test/test_pkg.py",
"Lib/test/test_subclassinit.py",
"Lib/test/test_unittest/testmock/testpatch.py",
"Lib/test/test_yield_from.py",
"Lib/test/time_hashlib.py",
]
0