diff options
author | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2016-03-14 12:18:42 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2016-03-14 12:18:42 -0700 |
commit | db3bccade402f651f5eb770aa49dc09735ece260 (patch) | |
tree | 02776bb92b25f4328a1c9eb0a2d326a3af16373d /tools/run_tests | |
parent | 047fe1f005491228301124529273fac13d27f3df (diff) | |
parent | 2480f98e192f9e9a00c7cabcd6a77321f1d9525e (diff) |
Merge pull request #5453 from adelez/setup_full_interop
Add a script to run interop tests against all versions of prod servers.
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-x | tools/run_tests/run_interop_tests.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py index 1dc772a856..86eb52bbde 100755 --- a/tools/run_tests/run_interop_tests.py +++ b/tools/run_tests/run_interop_tests.py @@ -589,7 +589,11 @@ prod_servers = { 'cloud_gateway': ('216.239.32.255', 'grpc-test.sandbox.googleapis.com', False), 'cloud_gateway_v2': ('216.239.32.255', 'grpc-test2.sandbox.googleapis.com', - True) + True), + 'gateway_v4': ('grpc-test4.sandbox.googleapis.com', + 'grpc-test4.sandbox.googleapis.com', True), + 'cloud_gateway_v4': ('216.239.32.255', 'grpc-test4.sandbox.googleapis.com', + True), } argp = argparse.ArgumentParser(description='Run interop tests.') |