Merge pull request #130938 from pohly/test-gotestsum-format

test: switch gotestsum quiet output format
This commit is contained in:
Kubernetes Prow Robot 2025-03-20 14:16:47 -07:00 committed by GitHub
commit 3ac21c1a1c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -139,7 +139,8 @@ testargs=()
eval "testargs=(${KUBE_TEST_ARGS:-})"
# gotestsum --format value
gotestsum_format=standard-quiet
# "standard-quiet" let's some stderr log messages through, "pkgname-and-test-fails" is similar and doesn't (https://github.com/kubernetes/kubernetes/issues/130934#issuecomment-2739957840).
gotestsum_format=pkgname-and-test-fails
if [[ -n "${FULL_LOG:-}" ]] ; then
gotestsum_format=standard-verbose
fi