aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/tools/run_tests/tests.json.template
blob: 6d7520bc0f82fee3d153c285cce4ff8c10cf3edc (plain)
1
2
3
4
5
6
7
8
9
10
11
<%!
import json
%>

${json.dumps([{"name": tgt.name,
               "language": tgt.language,
               "flaky": tgt.get("flaky", False)}
              for tgt in targets
              if tgt.get('run', True) and tgt.build == 'test'],
             sort_keys=True, indent=2)}