Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(815)

Unified Diff: mojo/tools/mojob.py

Issue 746133004: Failing sky tests should not make tree red (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/tools/mojob.py
diff --git a/mojo/tools/mojob.py b/mojo/tools/mojob.py
index dc2de5f5fd9bc22e3828a7a876af18df4f94ddc0..03f48a80de90b66d69164521e427ab58ce5fc6ea 100755
--- a/mojo/tools/mojob.py
+++ b/mojo/tools/mojob.py
@@ -157,7 +157,10 @@ def run_skytests(args):
command.append('--test-results-server')
command.append(args.test_results_server)
- return subprocess.call(command)
+ subprocess.call(command)
+ # Sky tests are currently really unstable, so make the step green even if
+ # tests actually fail.
+ return 0
def run_pytests(args):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698