Skip to content

Commit 60ace32

Browse files
author
Brian Kelley
committed
Unittestgui changed their interface, they no longer support the minimal option.
1 parent 208f99f commit 60ace32

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

run_tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,7 @@ def __init__(self, build, build_inplace, libdir=None):
358358
# Hack sys.path
359359
self.cwd = os.getcwd()
360360
sys.path.insert(0, os.path.join(self.cwd, self.libdir))
361+
print sys.path
361362
# Hack again for external products.
362363
global functional
363364
kind = functional and "functional" or "unit"
@@ -538,7 +539,8 @@ def gui_runner(files, test_filter):
538539

539540
suites = ", ".join(suites)
540541
minimal = (GUI == "minimal")
541-
unittestgui.main(suites, minimal)
542+
# unittestgui apparently doesn't take the minimal flag anymore
543+
unittestgui.main(suites)
542544

543545
class TrackRefs:
544546
"""Object to track reference counts across test runs."""

0 commit comments

Comments
 (0)