summaryrefslogtreecommitdiff
path: root/Lib/test/test_scriptpackages.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_scriptpackages.py')
-rw-r--r--Lib/test/test_scriptpackages.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_scriptpackages.py b/Lib/test/test_scriptpackages.py
index ee14be2bb4..7e02fa02f5 100644
--- a/Lib/test/test_scriptpackages.py
+++ b/Lib/test/test_scriptpackages.py
@@ -2,7 +2,9 @@
import unittest
from test import test_support
-import aetools
+
+# Skip this test if aetools does not exist.
+test_support.import_module('aetools')
class TestScriptpackages(unittest.TestCase):