Lines Matching full:optional
16 from typing import Optional, Tuple, List, Dict, Callable, Iterable, get_origin
181 def check_pre_skip(self, test: str, spec: TestSpec, resource: str, nproc: int) -> Optional[str]:
191 Optional[str]: Skip reason, or `None` if test case should not be skipped
195 … def check_post_skip(self, test: str, spec: TestSpec, resource: str, stderr: str) -> Optional[str]:
205 Optional[str]: Skip reason, or `None` if unexpected error
281 open (str, optional): Opening delimiter, must be different than `close`. Defaults to '('.
282 close (str, optional): Closing delimeter, must be different than `open`. Defaults to ')'.
405 …comment_str: str = '#', comment_func: Optional[Callable[[str, str], Optional[str]]] = None) -> str:
413 comment_str (str, optional): String to denoting commented line
414 comment_func (Callable, optional): Function to determine if test and true line are different
597 …verbose (bool, optional): Print detailed output for all runs, not just failures. Defaults to False.
616 skip_reason: Optional[str] = suite_spec.check_pre_skip(test, spec, backend, nproc)
658 … skip_reason: Optional[str] = suite_spec.check_post_skip(test, spec, backend, test_case.stderr)
778 …pool_size (int, optional): Number of processes to use when running tests in parallel. Defaults to …
779 search (str, optional): Regular expression used to match tests. Defaults to ".*".
780 …verbose (bool, optional): Print detailed output for all runs, not just failures. Defaults to False.