Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-01-09 19:40:33 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-01-09 19:40:33 (GMT)
commit13bf9a240e418529fc683f8c53b681fe0575a005 (patch)
tree368c35eba6f80909eec3f6bef4d92bdfbc0776a4 /devbot
parent33d4064b7c3bfa6d001b397b3e563fd7f47792ac (diff)
Force the UI tests to be unbuffered
Diffstat (limited to 'devbot')
-rw-r--r--devbot/run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devbot/run.py b/devbot/run.py
index bbb1576..caf9bad 100644
--- a/devbot/run.py
+++ b/devbot/run.py
@@ -51,7 +51,7 @@ def run_test(test_cmd, test_path):
os.rmdir(temp_dir)
try:
- command.run(["python", test_path])
+ command.run(["python", "-u", test_path])
result = True
except subprocess.CalledProcessError:
result = False