Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/run.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-12-27 00:45:58 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-12-27 00:45:58 (GMT)
commit9156e1f3d15ec8bac9890a80688f9ae6e924ff81 (patch)
treead3702a96f5d07d68ec1718b56c054d9e604cc13 /devbot/run.py
parentebd5eba680fc22cf24c0fa480e0fba4170a1b7ba (diff)
Run the UI test unbuffered
Diffstat (limited to 'devbot/run.py')
-rw-r--r--devbot/run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devbot/run.py b/devbot/run.py
index 9bd2a25..3f09e89 100644
--- a/devbot/run.py
+++ b/devbot/run.py
@@ -53,7 +53,7 @@ def run_test(command, test_path, virtual=False):
os.rmdir(temp_dir)
try:
- subprocess.check_call(["python", test_path])
+ subprocess.check_call(["python", "-u", test_path])
result = True
except subprocess.CalledProcessError:
result = False