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

Unified Diff: mojo/tools/mopy/perf_data_uploader.py

Issue 863263004: Add a link to the perf dashboard in the test output. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 11 months 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/mopy/perf_data_uploader.py
diff --git a/mojo/tools/mopy/perf_data_uploader.py b/mojo/tools/mopy/perf_data_uploader.py
index 3f00defd731743fc0a00d67e0587b2f854263a93..84e5280ab7bf1c8b96c87aaef8241b420cb62b11 100755
--- a/mojo/tools/mopy/perf_data_uploader.py
+++ b/mojo/tools/mopy/perf_data_uploader.py
@@ -129,7 +129,16 @@ def UploadPerfData(master_name, perf_id, test_name, builder_name, build_number,
except _UploadException as e:
print e
return False
- print "Done successfully."
+
+ print "Done."
+
+ dashboard_params = urllib.urlencode({
+ "masters": master_name,
+ "bots": perf_id,
+ "tests": test_name,
+ "rev": point_id
+ })
+ print "Results Dashboard: %s/report?%s" % (server_url, dashboard_params)
return True
« 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