Skip to content

Commit

Permalink
Make prow e2e test failure actually fail (istio#3689)
Browse files Browse the repository at this point in the history
* Make test failure actually fail

* Set pipefail on the same line
  • Loading branch information
sebastienvas authored Feb 22, 2018
1 parent 15071de commit 1a9b31a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/istio.mk
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ e2e_upgrade: istioctl generate_yaml
go test -v -timeout 20m ./tests/e2e/tests/upgrade -args ${E2E_ARGS} ${EXTRA_E2E_ARGS}

e2e_all:
$(MAKE) e2e_simple e2e_mixer e2e_bookinfo |& tee >(go-junit-report > junit.xml)
set -o pipefail; $(MAKE) e2e_simple e2e_mixer e2e_bookinfo |& tee >(go-junit-report > junit.xml)

e2e_pilot: istioctl generate_yaml
go test -v -timeout 20m ./tests/e2e/tests/pilot ${TESTOPTS} -hub ${HUB} -tag ${TAG}
Expand Down

0 comments on commit 1a9b31a

Please sign in to comment.