contrib: test: redirect stderr to stdout

I don't want to see stuff like this anymore
https://aos-ci.s3.amazonaws.com/kubernetes-incubator/cri-o/crio-integration-tests-prs/360/fullresults.txt

It's basically missing the actual go build error because stdout gets
eaten somewhere by ansible I guess.

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca 2017-05-26 21:33:02 +02:00
parent 961edb2719
commit 7c43d34a1b
No known key found for this signature in database
GPG key ID: B2BEAD150DE936B9

View file

@ -217,7 +217,7 @@
args: args:
chdir: /root/src/github.com/kubernetes-incubator/cri-o/ chdir: /root/src/github.com/kubernetes-incubator/cri-o/
- name: run integration tests RHEL - name: run integration tests RHEL
shell: 'CGROUP_MANAGER=systemd STORAGE_OPTS="--storage-driver=overlay2 --storage-opt overlay2.override_kernel_check=1" make localintegration > testout.txt' shell: 'CGROUP_MANAGER=systemd STORAGE_OPTS="--storage-driver=overlay2 --storage-opt overlay2.override_kernel_check=1" make localintegration 2>&1 > testout.txt'
args: args:
chdir: /root/src/github.com/kubernetes-incubator/cri-o chdir: /root/src/github.com/kubernetes-incubator/cri-o
async: 3600 async: 3600
@ -233,7 +233,7 @@
ignore_errors: yes ignore_errors: yes
when: (ansible_distribution == 'RedHat' or ansible_distribution == 'CentOS') and xunit when: (ansible_distribution == 'RedHat' or ansible_distribution == 'CentOS') and xunit
- name: run integration tests Fedora - name: run integration tests Fedora
shell: 'CGROUP_MANAGER=systemd STORAGE_OPTS="--storage-driver=overlay2" make localintegration > testout.txt' shell: 'CGROUP_MANAGER=systemd STORAGE_OPTS="--storage-driver=overlay2" make localintegration 2>&1 > testout.txt'
args: args:
chdir: /root/src/github.com/kubernetes-incubator/cri-o chdir: /root/src/github.com/kubernetes-incubator/cri-o
async: 3600 async: 3600
@ -350,7 +350,7 @@
state: present state: present
- name: run k8s tests - name: run k8s tests
shell: | shell: |
make test-e2e-node PARALLELISM=1 RUNTIME=remote CONTAINER_RUNTIME_ENDPOINT=/var/run/crio.sock IMAGE_SERVICE_ENDPOINT=/var/run/crio.sock TEST_ARGS="--prepull-images=true" FOCUS="\[Conformance\]" >> node-e2e.log make test-e2e-node PARALLELISM=1 RUNTIME=remote CONTAINER_RUNTIME_ENDPOINT=/var/run/crio.sock IMAGE_SERVICE_ENDPOINT=/var/run/crio.sock TEST_ARGS="--prepull-images=true" FOCUS="\[Conformance\]" 2>&1 > node-e2e.log
args: args:
chdir: /root/src/k8s.io/kubernetes chdir: /root/src/k8s.io/kubernetes
async: 7200 async: 7200