aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/tools/run_tests/tests.json.template
blob: 655976ac86771bd098609cf10cf1e6d5415d5020 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%YAML 1.2
--- |
  <%!
  import json
  %>
  
  ${json.dumps([{"name": tgt.name,
                 "language": tgt.language,
                 "platforms": tgt.platforms,
                 "ci_platforms": tgt.ci_platforms,
  	       "exclude_configs": tgt.get("exclude_configs", []),
                 "flaky": tgt.flaky}
                for tgt in targets
                if tgt.get('run', True) and tgt.build == 'test'],
               sort_keys=True, indent=2)}