diff options
Diffstat (limited to 'templates/tools/run_tests/tests.json.template')
-rw-r--r-- | templates/tools/run_tests/tests.json.template | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/tools/run_tests/tests.json.template b/templates/tools/run_tests/tests.json.template index bb54489861..6d7520bc0f 100644 --- a/templates/tools/run_tests/tests.json.template +++ b/templates/tools/run_tests/tests.json.template @@ -2,7 +2,9 @@ import json %> -${json.dumps([{"name": tgt.name, "language": tgt.language} +${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)} |