File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -228,19 +228,13 @@ def check_cji_jobs(self) -> None:
228228 print (f"\n All jobs succeeded: { job_map } " , flush = True )
229229
230230 def run (self ) -> None :
231- # Skip Konflux tests unless explicitly labeled.
232- # This prevents tests from running in both Jenkins and Konflux and can be
233- # removed when Konflux increases the integration test timeout and
234- # Jenkins tests are disabled.
235- #
236- # https://issues.redhat.com/browse/KONFLUX-5449
237231 if self .pr_labels :
238- if "ok-to-skip-smokes " in self .pr_labels :
239- display ("PR labeled to skip smoke tests" )
232+ if "run-jenkins-tests " in self .pr_labels :
233+ display ("PR labeled to run Jenkins tests instead of Konflux " )
240234 return
241235
242- if "run-konflux-tests" not in self .pr_labels :
243- display ("PR is not labeled to run tests in Konflux " )
236+ if "ok-to-skip-smokes" in self .pr_labels :
237+ display ("PR labeled to skip smoke tests " )
244238 return
245239
246240 if "smokes-required" in self .pr_labels and not any (label .endswith ("smoke-tests" ) for label in self .pr_labels ):
You can’t perform that action at this time.
0 commit comments