mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-29 08:47:56 +00:00
Merge pull request #10676 from stevenhorsman/fix-qemu-coco-dev-skip
tests: Fix qemu-coc-dev skip
This commit is contained in:
commit
2c6126d3ab
@ -9,7 +9,9 @@ load "${BATS_TEST_DIRNAME}/../../common.bash"
|
|||||||
load "${BATS_TEST_DIRNAME}/tests_common.sh"
|
load "${BATS_TEST_DIRNAME}/tests_common.sh"
|
||||||
|
|
||||||
setup() {
|
setup() {
|
||||||
[ "${KATA_HYPERVISOR}" = "qemu-coco-dev" ] || skip "Test not stable on qemu-coco-dev. See issue #10616"
|
if [ "${KATA_HYPERVISOR}" == "qemu-coco-dev" ]; then
|
||||||
|
skip "Test not stable on qemu-coco-dev. See issue #10616"
|
||||||
|
fi
|
||||||
|
|
||||||
get_pod_config_dir
|
get_pod_config_dir
|
||||||
job_name="job-pi-test"
|
job_name="job-pi-test"
|
||||||
@ -40,7 +42,9 @@ setup() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
teardown() {
|
teardown() {
|
||||||
[ "${KATA_HYPERVISOR}" = "qemu-coco-dev" ] || skip "Test not ready yet for ${KATA_HYPERVISOR}"
|
if [ "${KATA_HYPERVISOR}" == "qemu-coco-dev" ]; then
|
||||||
|
skip "Test not stable on qemu-coco-dev. See issue #10616"
|
||||||
|
fi
|
||||||
|
|
||||||
# Debugging information
|
# Debugging information
|
||||||
kubectl describe pod "$pod_name"
|
kubectl describe pod "$pod_name"
|
||||||
|
Loading…
Reference in New Issue
Block a user