mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Update web-platform-tests to revision 122a4672fa0dc554a6e7528fa3487fd907c792ee
This commit is contained in:
parent
fb1123495f
commit
93d826f7ba
301 changed files with 4775 additions and 1769 deletions
|
@ -191,6 +191,12 @@ def set_variables(event):
|
|||
|
||||
|
||||
def include_job(job):
|
||||
# Special case things that unconditionally run on master
|
||||
if (os.environ["GITHUB_PULL_REQUEST"] == "false" and
|
||||
os.environ["GITHUB_BRANCH"] == "master" and
|
||||
job == "run-all"):
|
||||
return True
|
||||
|
||||
jobs_str = run([os.path.join(root, "wpt"),
|
||||
"test-jobs"], return_stdout=True)
|
||||
print(jobs_str)
|
||||
|
@ -220,6 +226,7 @@ def main():
|
|||
try:
|
||||
event = json.loads(os.environ["TASK_EVENT"])
|
||||
except KeyError:
|
||||
print("WARNING: Missing TASK_EVENT environment variable")
|
||||
# For example under local testing
|
||||
event = {}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue