diff --git a/tmt/plans/main.fmf b/tmt/plans/main.fmf index fcb41d17c..0c27a685c 100644 --- a/tmt/plans/main.fmf +++ b/tmt/plans/main.fmf @@ -42,12 +42,3 @@ execute: - init - build-qemu - test-kola-upgrade - -/kola-testiso: - summary: run kola testiso tests - discover+: - how: fmf - test: - - init - - build-iso - - test-iso diff --git a/tmt/tests/build.sh b/tmt/tests/build.sh index ed1194f65..c0e040e40 100755 --- a/tmt/tests/build.sh +++ b/tmt/tests/build.sh @@ -6,6 +6,4 @@ source "utils.sh" if [ "$TEST_CASE" = "build-qemu" ]; then cosa osbuild qemu -elif [ "$TEST_CASE" = "build-iso" ]; then - cosa osbuild live metal metal4k fi diff --git a/tmt/tests/entrypoint.sh b/tmt/tests/entrypoint.sh index c018d84b1..851c676ce 100755 --- a/tmt/tests/entrypoint.sh +++ b/tmt/tests/entrypoint.sh @@ -6,10 +6,10 @@ case "$TEST_CASE" in "init") ./init.sh ;; - "build-qemu"|"build-iso") + "build-qemu") ./build.sh ;; - "test-qemu"|"test-kola-upgrade"|"test-iso") + "test-qemu"|"test-kola-upgrade") ./test.sh ;; *) diff --git a/tmt/tests/kola.fmf b/tmt/tests/kola.fmf index 8c9e422bb..3ed8f49c3 100644 --- a/tmt/tests/kola.fmf +++ b/tmt/tests/kola.fmf @@ -23,15 +23,3 @@ test: ./entrypoint.sh order: 80 environment: TEST_CASE: test-kola-upgrade - -/build-iso: - duration: 1h - order: 90 - environment: - TEST_CASE: build-iso - -/test-iso: - duration: 2h - order: 100 - environment: - TEST_CASE: test-iso diff --git a/tmt/tests/test.sh b/tmt/tests/test.sh index 0993c2eb1..47bc8aaf4 100755 --- a/tmt/tests/test.sh +++ b/tmt/tests/test.sh @@ -36,13 +36,4 @@ elif [ "$TEST_CASE" = "test-kola-upgrade" ]; then ) run_kola collect_kola_artifacts - -elif [ "$TEST_CASE" = "test-iso" ]; then - export KOLA_ACTION="testiso" - export KOLA_ID="test-iso" - export KOLA_EXTRA_ARGS=( - --inst-insecure - ) - run_kola - collect_kola_artifacts fi