Skip to content

Commit da9ef34

Browse files
[PSM interop] Don't fail url_map target if sub-target already failed (v1.54.x backport) (#33525)
Backport of #33520 to v1.54.x. --- Follow up change of #33222. We don't want file multiple bugs if any of the sub-tests of the `url_map` test fails. <!-- If you know who should review your pull request, please assign it to that person, otherwise the pull request would get assigned randomly. If your pull request is for a specific language, please add the appropriate lang label. -->
1 parent 6894b4b commit da9ef34

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tools/internal_ci/linux/grpc_xds_url_map.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ main() {
143143
build_docker_images_if_needed
144144
# Run tests
145145
cd "${TEST_DRIVER_FULL_DIR}"
146-
run_test url_map
146+
run_test url_map || echo "Failed url_map test"
147147
}
148148

149149
main "$@"

tools/internal_ci/linux/grpc_xds_url_map_python.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ main() {
153153
build_docker_images_if_needed
154154
# Run tests
155155
cd "${TEST_DRIVER_FULL_DIR}"
156-
run_test url_map
156+
run_test url_map || echo "Failed url_map test"
157157
}
158158

159159
main "$@"

0 commit comments

Comments
 (0)