Skip to content

Commit 88efe4d

Browse files
committed
[PSM interop] Don't fail url_map target if sub-target already failed (grpc#33520)
Follow up change of grpc#33222. We don't want file multiple bugs if any of the sub-tests of the `url_map` test fails.
1 parent 539d75c commit 88efe4d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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)