Don't buffer test output into memory

This commit is contained in:
Calen Pennington
2017-06-08 09:46:27 -04:00
parent fdafd53a66
commit fe3f0f54d8

View File

@@ -88,12 +88,10 @@ class TestSuite(object):
try:
process = subprocess.Popen(cmd, **kwargs)
process.communicate()
return (process.wait() == 0)
except KeyboardInterrupt:
kill_process(process)
sys.exit(1)
else:
return process.returncode == 0
def run_suite_tests(self):
"""