From 6d9d6ff01f8d6fda5b332dde93f34dc58d6c3101 Mon Sep 17 00:00:00 2001 From: wc2so1 Date: Mon, 1 Mar 2004 20:06:08 +0000 Subject: [PATCH] Unittestgui changed their interface, they no longer support the minimal option. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2135 57a73879-2fb5-44c3-a270-3262357dd7e2 --- run_tests.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/run_tests.py b/run_tests.py index 750c291..401c74a 100644 --- a/run_tests.py +++ b/run_tests.py @@ -358,6 +358,7 @@ class PathInit: # Hack sys.path self.cwd = os.getcwd() sys.path.insert(0, os.path.join(self.cwd, self.libdir)) + print sys.path # Hack again for external products. global functional kind = functional and "functional" or "unit" @@ -538,7 +539,8 @@ def gui_runner(files, test_filter): suites = ", ".join(suites) minimal = (GUI == "minimal") - unittestgui.main(suites, minimal) + # unittestgui apparently doesn't take the minimal flag anymore + unittestgui.main(suites) class TrackRefs: """Object to track reference counts across test runs.""" -- 2.30.2