Searched refs:str_or_re (Results 1 – 1 of 1) sorted by relevance
106 def name_matches_pattern(name: str, str_or_re) -> bool: argument113 if not isinstance(str_or_re, str):114 return str_or_re.fullmatch(name) is not None116 return str_or_re == name153 for str_or_re in ignored_tests[full_test_suite]:154 if name_matches_pattern(test_string, str_or_re):