mirror of
https://github.com/servo/servo.git
synced 2025-08-14 01:45:33 +01:00
Update web-platform-tests to revision fb15e14b52049f952612623ee0d7fb7a620a57c9
This commit is contained in:
parent
200cc8aa6b
commit
4a942c982f
141 changed files with 2563 additions and 1589 deletions
|
@ -90,6 +90,9 @@ def get_paths(**kwargs):
|
|||
|
||||
|
||||
def get_jobs(paths, **kwargs):
|
||||
if kwargs.get("all"):
|
||||
return set(job_path_map.keys())
|
||||
|
||||
jobs = set()
|
||||
|
||||
rules = {}
|
||||
|
@ -121,6 +124,7 @@ def get_jobs(paths, **kwargs):
|
|||
def create_parser():
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("revish", default=None, help="Commits to consider. Defaults to the commits on the current branch", nargs="?")
|
||||
parser.add_argument("--all", help="List all jobs unconditionally.", action="store_true")
|
||||
parser.add_argument("--includes", default=None, help="Jobs to check for. Return code is 0 if all jobs are found, otherwise 1", nargs="*")
|
||||
return parser
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue