We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f461759 commit c20262eCopy full SHA for c20262e
hack/jenkins/benchmark-dockerized.sh
@@ -41,6 +41,7 @@ export KUBE_RACE=" "
41
# Disable coverage report
42
export KUBE_COVER="n"
43
export ARTIFACTS=${ARTIFACTS:-"${WORKSPACE}/artifacts"}
44
+export FULL_LOG="true"
45
46
mkdir -p "${ARTIFACTS}"
47
cd /go/src/k8s.io/kubernetes
hack/make-rules/test.sh
@@ -188,6 +188,10 @@ if [[ -n "${KUBE_JUNIT_REPORT_DIR}" ]] ; then
188
go_test_grep_pattern="^[^[:space:]]\+[[:space:]]\+[^[:space:]]\+/[^[[:space:]]\+"
189
fi
190
191
+if [[ -n "${FULL_LOG:-}" ]] ; then
192
+ go_test_grep_pattern=".*"
193
+fi
194
+
195
# Filter out arguments that start with "-" and move them to goflags.
196
testcases=()
197
for arg; do
0 commit comments