| OLD | NEW |
| (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 |
| OLD | NEW |