From ebc549fa7d4b1b171a727f2907a642e4894f6398 Mon Sep 17 00:00:00 2001 From: Chidera Denzel-mark Anoliefo Date: Thu, 29 Jan 2026 01:53:24 -0500 Subject: [PATCH] Fix[Build]: Stop removing runnable code from skipped tutorials in sharded build --- .jenkins/get_files_to_run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.jenkins/get_files_to_run.py b/.jenkins/get_files_to_run.py index bdf4562a827..b8c83a999ed 100644 --- a/.jenkins/get_files_to_run.py +++ b/.jenkins/get_files_to_run.py @@ -96,8 +96,8 @@ def main() -> None: all_files = get_all_files() files_to_run = calculate_shards(all_files, num_shards=args.num_shards)[args.shard_num - 1] - if not args.dry_run: - remove_other_files(all_files, compute_files_to_keep(files_to_run)) + # if not args.dry_run: + # remove_other_files(all_files, compute_files_to_keep(files_to_run)) stripped_file_names = [Path(x).stem for x in files_to_run] print(" ".join(stripped_file_names))