We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff57d61 commit 4fa9d57Copy full SHA for 4fa9d57
.jenkins/get_files_to_run.py
@@ -96,6 +96,7 @@ def main() -> None:
96
97
all_files = get_all_files()
98
files_to_run = calculate_shards(all_files, num_shards=args.num_shards)[args.shard_num - 1]
99
+ files_to_run = [x for x in files_to_run if x not in NOT_RUN]
100
if not args.dry_run:
101
remove_other_files(all_files, compute_files_to_keep(files_to_run))
102
stripped_file_names = [Path(x).stem for x in files_to_run]
0 commit comments