File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -34,12 +34,14 @@ retry() {
34
34
export PATH=${GOPATH} /bin:${PWD} /third_party/etcd:/usr/local/go/bin:${PATH}
35
35
36
36
go install k8s.io/kubernetes/vendor/github.com/cespare/prettybench
37
+ go install k8s.io/kubernetes/vendor/github.com/jstemmer/go-junit-report
37
38
38
39
# Disable the Go race detector.
39
40
export KUBE_RACE=" "
40
41
# Disable coverage report
41
42
export KUBE_COVER=" n"
42
43
export ARTIFACTS=${ARTIFACTS:- " ${WORKSPACE} /artifacts" }
44
+ export FULL_LOG=" true"
43
45
44
46
mkdir -p " ${ARTIFACTS} "
45
47
cd /go/src/k8s.io/kubernetes
Original file line number Diff line number Diff line change @@ -188,6 +188,10 @@ if [[ -n "${KUBE_JUNIT_REPORT_DIR}" ]] ; then
188
188
go_test_grep_pattern=" ^[^[:space:]]\+[[:space:]]\+[^[:space:]]\+/[^[[:space:]]\+"
189
189
fi
190
190
191
+ if [[ -n " ${FULL_LOG:- } " ]] ; then
192
+ go_test_grep_pattern=" .*"
193
+ fi
194
+
191
195
# Filter out arguments that start with "-" and move them to goflags.
192
196
testcases=()
193
197
for arg; do
You can’t perform that action at this time.
0 commit comments