summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tools/test_sundry.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_tools/test_sundry.py')
-rw-r--r--Lib/test/test_tools/test_sundry.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/Lib/test/test_tools/test_sundry.py b/Lib/test/test_tools/test_sundry.py
index 52369ec..ed03c2f 100644
--- a/Lib/test/test_tools/test_sundry.py
+++ b/Lib/test/test_tools/test_sundry.py
@@ -25,7 +25,7 @@ class TestSundryScripts(unittest.TestCase):
# scripts that use windows-only modules
windows_only = ['win_add2path']
# denylisted for other reasons
- other = ['analyze_dxp', '2to3']
+ other = ['2to3']
skiplist = denylist + allowlist + windows_only + other
@@ -50,13 +50,6 @@ class TestSundryScripts(unittest.TestCase):
for name in self.windows_only:
import_tool(name)
- def test_analyze_dxp_import(self):
- if hasattr(sys, 'getdxp'):
- import_tool('analyze_dxp')
- else:
- with self.assertRaises(RuntimeError):
- import_tool('analyze_dxp')
-
if __name__ == '__main__':
unittest.main()