diff options
author | Sree Kuchibhotla <sreek@google.com> | 2016-09-27 15:53:24 -0700 |
---|---|---|
committer | Sree Kuchibhotla <sreek@google.com> | 2016-09-27 15:53:24 -0700 |
commit | 6b403331e011fe2e8f205eae870ff22f83b6485e (patch) | |
tree | d165333b81a2602a65f2e07c7c89b254766bce1a /test/cpp | |
parent | e2ac10627df63b2252e62c1795ef9ffbe283bf24 (diff) | |
parent | 7ab8eecdc9c0c2b1ebb2e69d7460bebca774ebd9 (diff) |
Merge branch 'master' into rpc_mgr
Diffstat (limited to 'test/cpp')
-rwxr-xr-x | test/cpp/qps/gen_build_yaml.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/cpp/qps/gen_build_yaml.py b/test/cpp/qps/gen_build_yaml.py index 4ff4e44b8b..369da2c8ca 100755 --- a/test/cpp/qps/gen_build_yaml.py +++ b/test/cpp/qps/gen_build_yaml.py @@ -74,8 +74,8 @@ print yaml.dump({ 'name': 'json_run_localhost', 'shortname': 'json_run_localhost:%s' % scenario_json['name'], 'args': ['--scenarios_json', _scenario_json_string(scenario_json)], - 'ci_platforms': ['linux', 'mac', 'posix', 'windows'], - 'platforms': ['linux', 'mac', 'posix', 'windows'], + 'ci_platforms': ['linux'], + 'platforms': ['linux'], 'flaky': False, 'language': 'c++', 'boringssl': True, @@ -85,5 +85,6 @@ print yaml.dump({ 'timeout_seconds': 3*60 } for scenario_json in scenario_config.CXXLanguage().scenarios() + if 'scalable' in scenario_json.get('CATEGORIES', []) ] }) |