From 1869f25ca53aaba2539fd18f3f647f44925f4503 Mon Sep 17 00:00:00 2001 From: Liangsheng Yin Date: Sun, 16 Nov 2025 23:15:36 +0800 Subject: [PATCH] Tiny deprecate the `--range-begin` in `run_suite.py` (#13381) --- test/srt/run_suite.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/test/srt/run_suite.py b/test/srt/run_suite.py index fe19ecd10..a5b4d8018 100644 --- a/test/srt/run_suite.py +++ b/test/srt/run_suite.py @@ -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])