From ec3684b635d1404d47a5039c36a3030c9cd974a8 Mon Sep 17 00:00:00 2001 From: Simone Tiraboschi Date: Thu, 13 Jul 2023 05:14:18 +0200 Subject: [PATCH] Properly consume kubevirt test binaries (#2436) In https://github.com/kubevirt/hyperconverged-cluster-operator/pull/2326 we had to introduce a temporary hack to consume a patched version of kubevirt test binary with additional fixes that now landed in the released version of Kubevirt. Let's remove the hack. Signed-off-by: Simone Tiraboschi --- hack/kv-smoke-tests.sh | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/hack/kv-smoke-tests.sh b/hack/kv-smoke-tests.sh index dda76e559a..d7ffa659d1 100755 --- a/hack/kv-smoke-tests.sh +++ b/hack/kv-smoke-tests.sh @@ -14,15 +14,7 @@ export BIN_DIR TESTS_BINARY="$BIN_DIR/kv_smoke_tests.test" -###### -# hack to run a fixed version of Kubevirt tests -# please remove this hack once -# - https://github.com/kubevirt/kubevirt/pull/9683 -# - https://github.com/kubevirt/kubevirt/pull/9684 -# are properly consumed -#curl -Lo "$TESTS_BINARY" "https://github.com/kubevirt/kubevirt/releases/download/${KUBEVIRT_VERSION}/tests.test" -curl -Lo "$TESTS_BINARY" "https://github.com/tiraboschi/kubevirt/releases/download/v1.0.0-alpha.0-fix/tests.test" -###### +curl -Lo "$TESTS_BINARY" "https://github.com/kubevirt/kubevirt/releases/download/${KUBEVIRT_VERSION}/tests.test" chmod +x "$TESTS_BINARY" echo "create testing infrastructure"