From 06425433fb9d87f1467681f428a26c51164e3c12 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Wed, 7 Dec 2022 15:54:38 -0500 Subject: [PATCH] kola: denylist rhcos.upgrade.from-ocp-rhcos for now This is a hack but we're in a time crunch and this is the fastest way to effect a change. We'll revert this in the near future. --- vars/kola.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vars/kola.groovy b/vars/kola.groovy index eeb2d05..c6ff26e 100644 --- a/vars/kola.groovy +++ b/vars/kola.groovy @@ -106,7 +106,7 @@ def call(params = [:]) { // normal run (without reprovision tests because those require a lot of memory) id = marker == "" ? "kola" : "kola-${marker}" ids += id - shwrap("cd ${cosaDir} && cosa kola run ${rerun} --output-dir=${outputDir}/${id} --build=${buildID} ${archArg} ${platformArgs} --tag '!reprovision' --parallel ${parallel} ${args}") + shwrap("cd ${cosaDir} && cosa kola run ${rerun} --output-dir=${outputDir}/${id} --build=${buildID} ${archArg} ${platformArgs} --denylist-test rhcos.upgrade.from-ocp-rhcos --tag '!reprovision' --parallel ${parallel} ${args}") // re-provision tests (not run with --parallel argument to kola) id = marker == "" ? "kola-reprovision" : "kola-reprovision-${marker}"