diff --git a/.jenkins/get_files_to_run.py b/.jenkins/get_files_to_run.py index bdf4562a82..b8c83a999e 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))