From 5b763286fff34e1635303731747d4c6f4813b074 Mon Sep 17 00:00:00 2001 From: Steve Kuznetsov Date: Wed, 27 Sep 2017 08:11:27 -0700 Subject: [PATCH] Don't ignore failures in the e2e suite There are no tasks that we need to run after the suite has finished, like we do with the integration suite, so it does not make sense to ignore the errors coming out of the e2e suite. Signed-off-by: Steve Kuznetsov --- contrib/test/integration/e2e.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/contrib/test/integration/e2e.yml b/contrib/test/integration/e2e.yml index e808c8f5..a8ee1f22 100644 --- a/contrib/test/integration/e2e.yml +++ b/contrib/test/integration/e2e.yml @@ -40,5 +40,4 @@ shell: | go run hack/e2e.go -v --test -test_args="-host=https://{{ ansible_default_ipv4.address }}:6443 --ginkgo.focus=\[Conformance\]" >e2e.log 2>&1 args: - chdir: "{{ ansible_env.GOPATH }}/src/k8s.io/kubernetes" - ignore_errors: yes \ No newline at end of file + chdir: "{{ ansible_env.GOPATH }}/src/k8s.io/kubernetes" \ No newline at end of file