diff options
author | Oleg Iarygin <oleg@arhadthedev.net> | 2023-04-29 19:11:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 19:11:15 (GMT) |
commit | 00e2c5960ea785e4659187335c29ab19df9298a4 (patch) | |
tree | 35fc0c9ba1b9eac693b07ddf45d1269a28e3a62a /Lib/test/test_tools | |
parent | 85c7bf5bcec07beea6064976e6199195cd34329d (diff) | |
download | cpython-00e2c5960ea785e4659187335c29ab19df9298a4.zip cpython-00e2c5960ea785e4659187335c29ab19df9298a4.tar.gz cpython-00e2c5960ea785e4659187335c29ab19df9298a4.tar.bz2 |
Remove non-existing tools from Sundry skiplist (#103991)
Diffstat (limited to 'Lib/test/test_tools')
-rw-r--r-- | Lib/test/test_tools/test_sundry.py | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/Lib/test/test_tools/test_sundry.py b/Lib/test/test_tools/test_sundry.py index 6a3dc12..3177faf 100644 --- a/Lib/test/test_tools/test_sundry.py +++ b/Lib/test/test_tools/test_sundry.py @@ -1,4 +1,4 @@ -"""Tests for scripts in the Tools directory. +"""Tests for scripts in the Tools/scripts directory. This file contains extremely basic regression tests for the scripts found in the Tools directory of a Python checkout or tarball which don't have separate @@ -17,14 +17,7 @@ class TestSundryScripts(unittest.TestCase): # At least make sure the rest don't have syntax errors. When tests are # added for a script it should be added to the allowlist below. - # scripts that have independent tests. - allowlist = ['reindent'] - # scripts that can't be imported without running - denylist = ['make_ctype'] - # denylisted for other reasons - other = ['2to3'] - - skiplist = denylist + allowlist + other + skiplist = ['2to3'] # import logging registers "atfork" functions which keep indirectly the # logging module dictionary alive. Mock the function to be able to unload |