You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
./hack/test-with-junit.sh appears to be eating the output from go test.
For now, it is probably better to remove the calls to that script since
some of the test suites are failing and no output is visible.
# This was copied from https://github.com/openshift/cluster-image-registry-operator
188
188
test-e2e: install-go-junit-report
189
-
set -o pipefail; go test -tags=$(GOTAGS) -failfast -timeout 190m -v$${WHAT:+ -run="$$WHAT"} ./test/e2e/ ./test/e2e-techpreview-shared/| ./hack/test-with-junit.sh $(@)
189
+
set -o pipefail; go test -tags=$(GOTAGS) -failfast -timeout 190m -v$${WHAT:+ -run="$$WHAT"} ./test/e2e/ ./test/e2e-techpreview-shared/
190
190
191
191
test-e2e-techpreview: install-go-junit-report
192
-
set -o pipefail; go test -tags=$(GOTAGS) -failfast -timeout 170m -v$${WHAT:+ -run="$$WHAT"} ./test/e2e-techpreview ./test/e2e-techpreview-shared/| ./hack/test-with-junit.sh $(@)
192
+
set -o pipefail; go test -tags=$(GOTAGS) -failfast -timeout 170m -v$${WHAT:+ -run="$$WHAT"} ./test/e2e-techpreview ./test/e2e-techpreview-shared/
193
193
194
194
test-e2e-single-node: install-go-junit-report
195
-
set -o pipefail; go test -tags=$(GOTAGS) -failfast -timeout 120m -v$${WHAT:+ -run="$$WHAT"} ./test/e2e-single-node/| ./hack/test-with-junit.sh $(@)
195
+
set -o pipefail; go test -tags=$(GOTAGS) -failfast -timeout 120m -v$${WHAT:+ -run="$$WHAT"} ./test/e2e-single-node/
196
196
197
197
test-e2e-ocl: install-go-junit-report
198
-
set -o pipefail; go test -tags=$(GOTAGS) -failfast -timeout 120m -v$${WHAT:+ -run="$$WHAT"} ./test/e2e-ocl/| ./hack/test-with-junit.sh $(@)
198
+
set -o pipefail; go test -tags=$(GOTAGS) -failfast -timeout 120m -v$${WHAT:+ -run="$$WHAT"} ./test/e2e-ocl/
0 commit comments