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

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

Issue 2439153002: Script for exporting WPT (Closed)
Patch Set: Linting Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import argparse
6 from webkitpy.common.host import Host
7 from webkitpy.w3c.test_exporter import TestExporter
8
9
10 def main():
11 parser = argparse.ArgumentParser(description='WPT Sync')
12 parser.add_argument('--no-fetch', action='store_true')
13 options = parser.parse_args()
14
15 test_exporter = TestExporter(host=Host(), options=options)
16 test_exporter.run()
17
18 # Afterward: run importer
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698