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])