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

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

Issue 2032943003: Import owners bug fix and testing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change test_importer.py to skip importing files named OWNERS Created 4 years, 7 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
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 0f5e7731f7d9a243828b46179eba1f1a49328151..fb591f544a49ecc2e920497c02afbbb289e91b82 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_importer.py
@@ -230,6 +230,9 @@ class TestImporter(object):
if filename.startswith('.') or filename.endswith('.pl'):
continue # For some reason the w3c repo contains random perl scripts we don't care about.
+ if filename == 'OWNERS':
+ continue # These files fail our presubmits.
+
fullpath = self.filesystem.join(root, filename)

Powered by Google App Engine
This is Rietveld 408576698