aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/tools
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-02-20 13:37:18 -0800
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-02-20 13:37:18 -0800
commit04ab71533991efa8ae4caa0c1d627a062dfddaed (patch)
tree2325f8c315d1ceb0104d41b0bbf1ff3102b08f1f /templates/tools
parent5f9d615d8d2abfdff9cb1aa9ec1d94f7d8142342 (diff)
Also check build=test
Diffstat (limited to 'templates/tools')
-rw-r--r--templates/tools/run_tests/tests.json.template2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/tools/run_tests/tests.json.template b/templates/tools/run_tests/tests.json.template
index f28a1daad8..bb54489861 100644
--- a/templates/tools/run_tests/tests.json.template
+++ b/templates/tools/run_tests/tests.json.template
@@ -4,6 +4,6 @@ import json
${json.dumps([{"name": tgt.name, "language": tgt.language}
for tgt in targets
- if tgt.get('run', True)],
+ if tgt.get('run', True) and tgt.build == 'test'],
sort_keys=True, indent=2)}