From: wc2so1 Date: Mon, 1 Mar 2004 20:06:08 +0000 (+0000) Subject: Unittestgui changed their interface, they no longer support the X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=6d9d6ff01f8d6fda5b332dde93f34dc58d6c3101;p=roundup.git 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 --- 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."""