Skip to content

Commit

Permalink
Check chroot in all targets (#2668)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
2 parents f07b8c0 + 51fb21a commit d6b6a6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packit_service/worker/helpers/testing_farm.py
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@ def run_testing_farm(
f"Running testing farm for target {test_run.target}, chroot={chroot}.",
)

if not self.skip_build and chroot not in self.build_targets:
if not self.skip_build and chroot not in self.build_targets_all:
self.report_missing_build_chroot(chroot)
return TaskResults(
success=False,
Expand Down

0 comments on commit d6b6a6e

Please sign in to comment.