mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
675 B
21 lines
675 B
9 years ago
|
%YAML 1.2
|
||
|
--- |
|
||
|
<%!
|
||
|
import json
|
||
|
%>
|
||
9 years ago
|
|
||
9 years ago
|
${json.dumps([{"name": tgt.name,
|
||
|
"language": tgt.language,
|
||
|
"platforms": tgt.platforms,
|
||
|
"ci_platforms": tgt.ci_platforms,
|
||
9 years ago
|
"gtest": tgt.gtest,
|
||
9 years ago
|
"exclude_configs": tgt.get("exclude_configs", []),
|
||
8 years ago
|
"exclude_iomgrs": tgt.get("exclude_iomgrs", []),
|
||
9 years ago
|
"args": [],
|
||
9 years ago
|
"flaky": tgt.flaky,
|
||
|
"cpu_cost": tgt.get("cpu_cost", 1.0)}
|
||
9 years ago
|
for tgt in targets
|
||
9 years ago
|
if tgt.get('run', True) and tgt.build == 'test'] +
|
||
|
tests,
|
||
9 years ago
|
sort_keys=True, indent=2)}
|