From 66f29284797c31190ad06554d9909d7ed8a894d1 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Mon, 2 Jun 2014 16:01:29 -0500 Subject: Issue #18492: Allow all resources when tests are not run by regrtest.py. This changeset also includes cleanup allowed by this behavior change. --- Lib/test/test_tk.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'Lib/test/test_tk.py') diff --git a/Lib/test/test_tk.py b/Lib/test/test_tk.py index 589f66d692..62729f0f32 100644 --- a/Lib/test/test_tk.py +++ b/Lib/test/test_tk.py @@ -10,15 +10,9 @@ support.requires('gui') from tkinter.test import runtktests -def test_main(enable_gui=False): - if enable_gui: - if support.use_resources is None: - support.use_resources = ['gui'] - elif 'gui' not in support.use_resources: - support.use_resources.append('gui') - +def test_main(): support.run_unittest( *runtktests.get_tests(text=False, packages=['test_tkinter'])) if __name__ == '__main__': - test_main(enable_gui=True) + test_main() -- cgit v1.2.1