blob: 3a3ac1e0f3bd37fa7a8267a470b016a4037a1340 [file] [log] [blame]
Craig Tiller1ebb7c82015-08-31 15:53:36 -07001%YAML 1.2
2--- |
3 <%!
4 import json
5 %>
6
7 ${json.dumps([{"name": tgt.name,
8 "language": tgt.language,
9 "platforms": tgt.platforms,
10 "ci_platforms": tgt.ci_platforms,
Craig Tiller0fe5ee72015-12-22 12:50:36 -080011 "exclude_configs": tgt.get("exclude_configs", []),
12 "args": [],
Craig Tiller1ebb7c82015-08-31 15:53:36 -070013 "flaky": tgt.flaky}
14 for tgt in targets
Craig Tiller0fe5ee72015-12-22 12:50:36 -080015 if tgt.get('run', True) and tgt.build == 'test'] +
16 tests,
Craig Tiller1ebb7c82015-08-31 15:53:36 -070017 sort_keys=True, indent=2)}