Don't skip a critest that we now pass
We can pass the "listImage should get exactly 2 repoTags in the result image" test now, so we no longer need to skip it. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
This commit is contained in:
parent
0ab8c507f4
commit
72442d0957
1 changed files with 4 additions and 7 deletions
|
@ -16,24 +16,21 @@
|
||||||
- name: Add masquerade for localhost
|
- name: Add masquerade for localhost
|
||||||
command: iptables -t nat -I POSTROUTING -s 127.0.0.1 ! -d 127.0.0.1 -j MASQUERADE
|
command: iptables -t nat -I POSTROUTING -s 127.0.0.1 ! -d 127.0.0.1 -j MASQUERADE
|
||||||
|
|
||||||
# TODO(runcom): enable skipped tests once we fix them (image list related)
|
|
||||||
# https://github.com/kubernetes-incubator/cri-o/issues/1048
|
|
||||||
- name: run critest validation
|
- name: run critest validation
|
||||||
shell: "critest -c --runtime-endpoint /var/run/crio/crio.sock --image-endpoint /var/run/crio/crio.sock -s 'listImage should get exactly 2 repoTags in the result image' v"
|
shell: "critest -c --runtime-endpoint /var/run/crio/crio.sock --image-endpoint /var/run/crio/crio.sock v"
|
||||||
args:
|
args:
|
||||||
chdir: "{{ ansible_env.GOPATH }}/src/github.com/kubernetes-incubator/cri-o"
|
chdir: "{{ ansible_env.GOPATH }}/src/github.com/kubernetes-incubator/cri-o"
|
||||||
async: 5400
|
async: 5400
|
||||||
poll: 30
|
poll: 30
|
||||||
when: ansible_distribution not in ['RedHat', 'CentOS']
|
when: ansible_distribution not in ['RedHat', 'CentOS']
|
||||||
|
|
||||||
# XXX: RHEL has an additional test which fails beacuse of selinux but disabling
|
# XXX: RHEL has an additional test which fails because of selinux but disabling
|
||||||
# it doesn't solve the issue.
|
# it doesn't solve the issue.
|
||||||
# TODO(runcom): enable skipped tests once we fix them (image list related and selinux)
|
# TODO(runcom): enable skipped tests once we fix them (selinux)
|
||||||
# https://github.com/kubernetes-incubator/cri-o/issues/1048
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1414236
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1414236
|
||||||
# https://access.redhat.com/solutions/2897781
|
# https://access.redhat.com/solutions/2897781
|
||||||
- name: run critest validation
|
- name: run critest validation
|
||||||
shell: "critest -c --runtime-endpoint /var/run/crio/crio.sock --image-endpoint /var/run/crio/crio.sock -s 'listImage should get exactly 2 repoTags in the result image|should not allow privilege escalation when true' v"
|
shell: "critest -c --runtime-endpoint /var/run/crio/crio.sock --image-endpoint /var/run/crio/crio.sock -s 'should not allow privilege escalation when true' v"
|
||||||
args:
|
args:
|
||||||
chdir: "{{ ansible_env.GOPATH }}/src/github.com/kubernetes-incubator/cri-o"
|
chdir: "{{ ansible_env.GOPATH }}/src/github.com/kubernetes-incubator/cri-o"
|
||||||
async: 5400
|
async: 5400
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue