aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/interop_matrix/run_interop_matrix_tests.py
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2019-01-09 21:15:01 +0100
committerGravatar GitHub <noreply@github.com>2019-01-09 21:15:01 +0100
commit54963bb90de38f6349f3dc3e82810f257c713621 (patch)
treea7522f8c5bf39cd892b132445e8386df7996664f /tools/interop_matrix/run_interop_matrix_tests.py
parent8d9190c0ddc3388adf6a80786afef4e5794a57df (diff)
parent5aa166eb2d8f98d83b016581abc36321b821f29f (diff)
Merge pull request #17660 from jtattermusch/interop_matrix_lang_release_cleanup
interop_matrix: refactor LANG_RELEASE_MATRIX
Diffstat (limited to 'tools/interop_matrix/run_interop_matrix_tests.py')
-rwxr-xr-xtools/interop_matrix/run_interop_matrix_tests.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/interop_matrix/run_interop_matrix_tests.py b/tools/interop_matrix/run_interop_matrix_tests.py
index dabb486523..c855de3b1e 100755
--- a/tools/interop_matrix/run_interop_matrix_tests.py
+++ b/tools/interop_matrix/run_interop_matrix_tests.py
@@ -44,10 +44,9 @@ _LANGUAGES = client_matrix.LANG_RUNTIME_MATRIX.keys()
# All gRPC release tags, flattened, deduped and sorted.
_RELEASES = sorted(
list(
- set(
- client_matrix.get_release_tag_name(info)
- for lang in client_matrix.LANG_RELEASE_MATRIX.values()
- for info in lang)))
+ set(release
+ for release_dict in client_matrix.LANG_RELEASE_MATRIX.values()
+ for release in release_dict.keys())))
argp = argparse.ArgumentParser(description='Run interop tests.')
argp.add_argument('-j', '--jobs', default=multiprocessing.cpu_count(), type=int)