aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_performance_tests.py
diff options
context:
space:
mode:
authorGravatar Michael Lumish <mlumish@google.com>2018-08-16 09:39:09 -0700
committerGravatar GitHub <noreply@github.com>2018-08-16 09:39:09 -0700
commit44f1270649e87319ae697d26c8697e08905481fc (patch)
treefe2ebafeda8de7ce16fa8a3deecabdb38a21d294 /tools/run_tests/run_performance_tests.py
parent04bbe6483f19b2bdb45f5cda03a2e5009e7a1426 (diff)
parentfc566ddcc552e5019d914973cea3eba069f410ed (diff)
Merge pull request #15175 from murgatroid99/node_perf_tests_again
Add Node perf tests for both implementations
Diffstat (limited to 'tools/run_tests/run_performance_tests.py')
-rwxr-xr-xtools/run_tests/run_performance_tests.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/run_tests/run_performance_tests.py b/tools/run_tests/run_performance_tests.py
index 5bf30e0050..04e706fa5b 100755
--- a/tools/run_tests/run_performance_tests.py
+++ b/tools/run_tests/run_performance_tests.py
@@ -200,6 +200,8 @@ def archive_repo(languages):
cmdline.append('../grpc-java')
if 'go' in languages:
cmdline.append('../grpc-go')
+ if 'node' in languages or 'node_purejs' in languages:
+ cmdline.append('../grpc-node')
archive_job = jobset.JobSpec(
cmdline=cmdline, shortname='archive_repo', timeout_seconds=3 * 60)
@@ -253,9 +255,9 @@ def build_on_remote_hosts(hosts,
languages=scenario_config.LANGUAGES.keys(),
build_local=False):
"""Builds performance worker on remote hosts (and maybe also locally)."""
- build_timeout = 15 * 60
+ build_timeout = 45 * 60
# Kokoro VMs (which are local only) do not have caching, so they need more time to build
- local_build_timeout = 30 * 60
+ local_build_timeout = 60 * 60
build_jobs = []
for host in hosts:
user_at_host = '%s@%s' % (_REMOTE_HOST_USERNAME, host)