summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2009-10-18 10:56:21 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2009-10-18 10:56:21 (GMT)
commit53a9dc91d7aaa460cf4899b81dbbfd48b9fe071b (patch)
tree3057185784d57318ed9b567183e3bb7d770de691
parentf317019c079d2bb4646a1cde1785c73880b50d00 (diff)
downloadcpython-53a9dc91d7aaa460cf4899b81dbbfd48b9fe071b.zip
cpython-53a9dc91d7aaa460cf4899b81dbbfd48b9fe071b.tar.gz
cpython-53a9dc91d7aaa460cf4899b81dbbfd48b9fe071b.tar.bz2
Restore sys.path in test_tk
-rw-r--r--Lib/test/test_tk.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_tk.py b/Lib/test/test_tk.py
index df4715b..eb9671f 100644
--- a/Lib/test/test_tk.py
+++ b/Lib/test/test_tk.py
@@ -17,10 +17,9 @@ except Tkinter.TclError, msg:
this_dir = os.path.dirname(os.path.abspath(__file__))
lib_tk_test = os.path.abspath(os.path.join(this_dir, os.path.pardir,
'lib-tk', 'test'))
-if lib_tk_test not in sys.path:
- sys.path.append(lib_tk_test)
-import runtktests
+with test_support.DirsOnSysPath(lib_tk_test):
+ import runtktests
def test_main(enable_gui=False):
if enable_gui:
@@ -29,7 +28,8 @@ def test_main(enable_gui=False):
elif 'gui' not in test_support.use_resources:
test_support.use_resources.append('gui')
- test_support.run_unittest(
+ with test_support.DirsOnSysPath(lib_tk_test):
+ test_support.run_unittest(
*runtktests.get_tests(text=False, packages=['test_tkinter']))
if __name__ == '__main__':