Skip to content

Commit

Permalink
[PSM interop] Don't fail url_map target if sub-target already failed …
Browse files Browse the repository at this point in the history
…(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.

-->
  • Loading branch information
XuanWang-Amos committed Jun 23, 2023
1 parent 6894b4b commit da9ef34
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 da9ef34

Please sign in to comment.