From f5d7821ace6cad3da43838858955ea919202c28f Mon Sep 17 00:00:00 2001 From: Samir Talwar Date: Fri, 21 Jan 2022 16:08:14 +0100 Subject: [PATCH] compatibility: Disable MultiParticipantIT for old versions. (#12526) They don't support the `definite_answer` gRPC error metadata entry. CHANGELOG_BEGIN CHANGELOG_END --- compatibility/bazel_tools/testing.bzl | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/compatibility/bazel_tools/testing.bzl b/compatibility/bazel_tools/testing.bzl index 4b965a99b8cc..5f0ea363c93b 100644 --- a/compatibility/bazel_tools/testing.bzl +++ b/compatibility/bazel_tools/testing.bzl @@ -687,6 +687,18 @@ excluded_test_tool_tests = [ }, ], }, + { + # The test requires the "definite_answer" gRPC error metadata entry, which is not present in old releases. + "start": "2.0.0-snapshot.20220118.8919.1", + "platform_ranges": [ + { + "end": "1.16.0", + "exclusions": [ + "MultiPartySubmissionIT", + ], + }, + ], + }, ] def in_range(version, range):