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 f2c3cd7 commit 9eec84cCopy full SHA for 9eec84c
.jenkins/get_files_to_run.py
@@ -3,6 +3,7 @@
3
import os
4
from pathlib import Path
5
from remove_runnable_code import remove_runnable_code
6
+from validate_tutorials_built import NOT_RUN
7
8
9
# Calculate repo base dir
@@ -96,6 +97,7 @@ def main() -> None:
96
97
98
all_files = get_all_files()
99
files_to_run = calculate_shards(all_files, num_shards=args.num_shards)[args.shard_num - 1]
100
+ files_to_run = [x for x in files_to_run if x not in NOT_RUN]
101
if not args.dry_run:
102
remove_other_files(all_files, compute_files_to_keep(files_to_run))
103
stripped_file_names = [Path(x).stem for x in files_to_run]
0 commit comments