From 4ac5fb42cd7f3e233b9bad507a5ce41337653e41 Mon Sep 17 00:00:00 2001 From: Pierre Kancir Date: Thu, 28 Feb 2019 11:51:43 +0100 Subject: [PATCH] Tools: don't upload failed log on ardupilot server by default --- Tools/autotest/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/autotest/common.py b/Tools/autotest/common.py index 7b75ba0b71..0963248018 100644 --- a/Tools/autotest/common.py +++ b/Tools/autotest/common.py @@ -455,7 +455,7 @@ class AutoTest(ABC): self.mavproxy.expect("Finished downloading", timeout=timeout) self.wait_heartbeat() self.wait_heartbeat() - if upload_logs and not os.getenv("AUTOTEST_NO_UPLOAD"): + if upload_logs and os.getenv("AUTOTEST_UPLOAD"): # optionally upload logs to server so we can see travis failure logs import datetime import glob