From 52ee681c5cf56e92632903081fad6d246e7321d6 Mon Sep 17 00:00:00 2001 From: Karel Simon Date: Mon, 9 Sep 2024 13:48:08 +0200 Subject: [PATCH] fix: remove tiny size from e2e test for fedora the fedora tiny size was removed and e2e test is failing because it is trying to create vm with it. Signed-off-by: Karel Simon --- automation/test-linux.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/automation/test-linux.sh b/automation/test-linux.sh index af7c6497..d799c50b 100755 --- a/automation/test-linux.sh +++ b/automation/test-linux.sh @@ -59,6 +59,10 @@ EOF sizes=("tiny" "small" "medium" "large") workloads=("desktop" "server" "highperformance") +if [[ $TARGET =~ fedora.* ]]; then + workloads=("small" "medium" "large") +fi + if [[ $TARGET =~ centos6.* ]]; then workloads=("server") fi