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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py

Issue 2665463003: Print commit shas when there are exportable and not exported commits. (Closed)
Patch Set: Log URLs of exportable commits, add test Created 3 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 | third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
index 4db22d7880bf0ceaea1252151981ed8937bb3f1c..3ecf37c89cca88f64fc91f5a84c9b7f415c7be30 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
@@ -77,7 +77,9 @@ class TestImporter(object):
if options.target == 'wpt':
commits = self.exportable_but_not_exported_commits(temp_repo_path)
if commits:
- _log.error('There were exportable but not-yet-exported commits: %r', commits)
+ _log.error('There were exportable but not-yet-exported commits:')
+ for commit in commits:
+ _log.error(' https://chromium.googlesource.com/chromium/src/+/%s', commit.sha)
_log.error('Aborting import to prevent clobbering these commits.')
return 1
« no previous file with comments | « no previous file | third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698