Skip to content

Commit

Permalink
buildscripts, psm interop: Don't fail target if sub-target already fa…
Browse files Browse the repository at this point in the history
…iled (#10233)

We configured TestGrid to file bug separately for each 
failed sub-target, if we still fail the main target, 
TestGrid will fail duplicate bugs.

The same change in core: 
grpc/grpc#33222.
  • Loading branch information
XuanWang-Amos committed Jun 2, 2023
1 parent e6d9b41 commit 09260ce
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions buildscripts/kokoro/psm-security.sh
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,6 @@ main() {
run_test $test || (( ++failed_tests ))
done
echo "Failed test suites: ${failed_tests}"
if (( failed_tests > 0 )); then
exit 1
fi
}

main "$@"
3 changes: 0 additions & 3 deletions buildscripts/kokoro/xds_k8s_lb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,6 @@ main() {
run_test $test || (( ++failed_tests ))
done
echo "Failed test suites: ${failed_tests}"
if (( failed_tests > 0 )); then
exit 1
fi
}

main "$@"

0 comments on commit 09260ce

Please sign in to comment.