Lines Matching +full:even +full:- +full:numbered
3 # Copyright (c) 2020-2021 Virtuozzo International GmbH
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
28 def chdir(path: Optional[str] = None) -> Iterator[None]:
42 def __init__(self, test_dir: Optional[str] = None) -> None:
46 self.all_tests = glob.glob('[0-9][0-9][0-9]')
52 with open(t, encoding="utf-8") as f:
59 def add_group_file(self, fname: str) -> None:
60 with open(fname, encoding="utf-8") as f:
74 def parse_test_name(self, name: str) -> str:
80 # Numbered tests are old naming convention. We should convert them
81 # to three-digit-length, like 1 --> 001.
95 start_from: Optional[str] = None) -> List[str]:
109 c. else (only @exclude_groups list is non-empty):
150 # leading zeroes, like 1 -> 001 and 23 -> 023.