Skip to content

Commit

Permalink
[PSM interop] Don't fail url_map target if sub-target already failed (g…
Browse files Browse the repository at this point in the history
…rpc#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.
  • Loading branch information
XuanWang-Amos committed Jun 22, 2023
1 parent 6894b4b commit 72a2e95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/internal_ci/linux/grpc_xds_url_map.sh
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ main() {
build_docker_images_if_needed
# Run tests
cd "${TEST_DRIVER_FULL_DIR}"
run_test url_map
run_test url_map || echo "Failed url_map test"
}

main "$@"
2 changes: 1 addition & 1 deletion tools/internal_ci/linux/grpc_xds_url_map_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ main() {
build_docker_images_if_needed
# Run tests
cd "${TEST_DRIVER_FULL_DIR}"
run_test url_map
run_test url_map || echo "Failed url_map test"
}

main "$@"

0 comments on commit 72a2e95

Please sign in to comment.