Tiny deprecate the --range-begin in run_suite.py (#13381)

This commit is contained in:
Liangsheng Yin
2025-11-16 23:15:36 +08:00
committed by GitHub
parent e019f233f9
commit 1869f25ca5

View File

@@ -632,18 +632,6 @@ if __name__ == "__main__":
choices=list(suites.keys()) + ["all"],
help="The suite to run",
)
arg_parser.add_argument(
"--range-begin",
type=int,
default=0,
help="The begin index of the range of the files to run.",
)
arg_parser.add_argument(
"--range-end",
type=int,
default=None,
help="The end index of the range of the files to run.",
)
arg_parser.add_argument(
"--auto-partition-id",
type=int,
@@ -672,8 +660,6 @@ if __name__ == "__main__":
if args.auto_partition_size:
files = auto_partition(files, args.auto_partition_id, args.auto_partition_size)
else:
files = files[args.range_begin : args.range_end]
print("The running tests are ", [f.name for f in files])