diff options
author | Alex Waygood <Alex.Waygood@Gmail.com> | 2023-10-10 08:58:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-10 08:58:56 (GMT) |
commit | 36886726a2fe9a2c8511cfb405704f39cf184d7c (patch) | |
tree | 0c358a797fe0d462dc5c746c7f3c211287e09f0d /Lib/test/.ruff.toml | |
parent | 0ffbde4e05a32eb16bd61bfd6a7158a5b0bd785f (diff) | |
download | cpython-36886726a2fe9a2c8511cfb405704f39cf184d7c.zip cpython-36886726a2fe9a2c8511cfb405704f39cf184d7c.tar.gz cpython-36886726a2fe9a2c8511cfb405704f39cf184d7c.tar.bz2 |
[3.12] gh-110558: Run ruff on Argument Clinic in CI (#110559) (#110598)
Diffstat (limited to 'Lib/test/.ruff.toml')
-rw-r--r-- | Lib/test/.ruff.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/.ruff.toml b/Lib/test/.ruff.toml index 99521dd..52a84f6 100644 --- a/Lib/test/.ruff.toml +++ b/Lib/test/.ruff.toml @@ -3,6 +3,8 @@ select = [ "F811", # Redefinition of unused variable (useful for finding test methods with the same name) ] extend-exclude = [ + # Excluded (run with the other AC files in its own separate ruff job in pre-commit) + "test_clinic.py", # Failed to lint "badsyntax_pep3120.py", "encoded_modules/module_iso_8859_1.py", |