Skip to content
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

Remove non-existing tools from Sundry skiplist #103991

Merged
merged 1 commit into from
Apr 29, 2023
Merged
Changes from all commits
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
11 changes: 2 additions & 9 deletions Lib/test/test_tools/test_sundry.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down