Mercurial > p > roundup > code
diff run_tests.py @ 2065:2996e168d359
Unittestgui changed their interface, they no longer support the minimal option.
| author | Brian Kelley <wc2so1@users.sourceforge.net> |
|---|---|
| date | Mon, 01 Mar 2004 20:06:08 +0000 |
| parents | f9e620befb43 |
| children | b1704ba7be41 |
line wrap: on
line diff
--- a/run_tests.py Sun Feb 29 01:16:32 2004 +0000 +++ b/run_tests.py Mon Mar 01 20:06:08 2004 +0000 @@ -358,6 +358,7 @@ # 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 @@ 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."""
