Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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