Skip to content

Commit d6b6a6e

Browse files
Check chroot in all targets (#2668)
Check chroot in all targets And not only in those that still need to be built. Related to #1886 Reviewed-by: František Lachman <[email protected]>
2 parents f07b8c0 + 51fb21a commit d6b6a6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packit_service/worker/helpers/testing_farm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@ def run_testing_farm(
900900
f"Running testing farm for target {test_run.target}, chroot={chroot}.",
901901
)
902902

903-
if not self.skip_build and chroot not in self.build_targets:
903+
if not self.skip_build and chroot not in self.build_targets_all:
904904
self.report_missing_build_chroot(chroot)
905905
return TaskResults(
906906
success=False,

0 commit comments

Comments
 (0)