Skip to content

Commit

Permalink
Only require a subset relation for wpt test_jobs --includes (#7906)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraham authored Oct 19, 2017
1 parent 6e57e56 commit 41f06d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ci/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,4 @@ def run(**kwargs):
for item in sorted(jobs):
print(item)
else:
return 0 if set(kwargs["includes"]) == jobs else 1
return 0 if set(kwargs["includes"]).issubset(jobs) else 1

0 comments on commit 41f06d4

Please sign in to comment.