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:
parent
961edb2719
commit
7c43d34a1b
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue