From 046c1d1aecc195afa2fb765d966871a2b700210b Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 20 Nov 2025 14:58:31 +0100 Subject: [PATCH] Bug 41274: Remove exceptions from files listed in the result repo IF we have pushed some files that should have been excluded from the tests but have been processed previously and failed, we should skip it the next build anyway Signed-off-by: Lucas Gass --- Koha/Devel/CI/IncrementalRuns.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Koha/Devel/CI/IncrementalRuns.pm b/Koha/Devel/CI/IncrementalRuns.pm index a62becddb9e..f7e02638f91 100644 --- a/Koha/Devel/CI/IncrementalRuns.pm +++ b/Koha/Devel/CI/IncrementalRuns.pm @@ -140,6 +140,7 @@ sub get_files_to_test { @koha_commit_history; if ($last_build_commit) { @files = @{ from_json( read_file("$self->{git_repo_dir}/$self->{test_dir}/$last_build_commit") ) }; + @files = $dev_files->remove_exceptions( \@files, $filetype ); push @files, $dev_files->ls_files( $filetype, "$last_build_commit HEAD" ); } else { -- 2.39.5