From a482aa204f1982a300364dabb0756cc947be7d7e 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Signed-off-by: Tomás Cohen Arazi --- 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 a62becddb9..f7e02638f9 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.50.1 (Apple Git-155)