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

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

Issue 2439153002: Script for exporting WPT (Closed)
Patch Set: Linting Created 4 years, 2 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/sync.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/sync.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/sync.py
new file mode 100644
index 0000000000000000000000000000000000000000..774955ca2faa723e5339baec117580e50cb7f47c
--- /dev/null
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/sync.py
@@ -0,0 +1,18 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import argparse
+from webkitpy.common.host import Host
+from webkitpy.w3c.test_exporter import TestExporter
+
+
+def main():
+ parser = argparse.ArgumentParser(description='WPT Sync')
+ parser.add_argument('--no-fetch', action='store_true')
+ options = parser.parse_args()
+
+ test_exporter = TestExporter(host=Host(), options=options)
+ test_exporter.run()
+
+ # Afterward: run importer

Powered by Google App Engine
This is Rietveld 408576698