diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-01-18 10:49:16 -0800 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-01-18 10:49:16 -0800 |
commit | f24e7241aa0bbace23c48e5717fa07e19f37ed36 (patch) | |
tree | e2cfac8f8fcc102afc477786a2241004a0447de4 /templates | |
parent | e9c959d78e3998855d0a16e5af9b10970299bb46 (diff) |
Pretty print tests.json
Diffstat (limited to 'templates')
-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 3a9e103281..4978480843 100644 --- a/templates/tools/run_tests/tests.json.template +++ b/templates/tools/run_tests/tests.json.template @@ -4,5 +4,6 @@ import json ${json.dumps([{"name": tgt.name, "language": tgt.language} for tgt in targets - if tgt.build == "test" and tgt.name[-5:] == "_test"])} + if tgt.build == "test" and tgt.name[-5:] == "_test"], + sort_keys=True, indent=4)} |