diff options
Diffstat (limited to 'templates/tools')
-rw-r--r-- | templates/tools/run_tests/tests.json.template | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/tools/run_tests/tests.json.template b/templates/tools/run_tests/tests.json.template index 6d7520bc0f..337858d9f1 100644 --- a/templates/tools/run_tests/tests.json.template +++ b/templates/tools/run_tests/tests.json.template @@ -4,7 +4,8 @@ import json ${json.dumps([{"name": tgt.name, "language": tgt.language, - "flaky": tgt.get("flaky", False)} + "platforms": tgt.platforms, + "flaky": tgt.flaky} for tgt in targets if tgt.get('run', True) and tgt.build == 'test'], sort_keys=True, indent=2)} |