improved version

This commit is contained in:
Maxim Kurnikov
2018-07-29 20:06:41 +03:00
parent c180555415
commit 89bb6eac75
160 changed files with 1007 additions and 607 deletions

View File

@@ -78,12 +78,12 @@ class DiscoverRunner:
) -> None: ...
def build_suite(
self,
test_labels: Union[List[str], Tuple[str], Tuple[str, str]] = ...,
test_labels: Union[Tuple[str, str], List[str], Tuple[str]] = ...,
extra_tests: None = ...,
**kwargs
) -> TestSuite: ...
def get_resultclass(self) -> None: ...
def get_test_runner_kwargs(self) -> Dict[str, Union[None, int]]: ...
def get_test_runner_kwargs(self) -> Dict[str, Optional[int]]: ...
def run_checks(self) -> None: ...
def run_suite(self, suite: TestSuite, **kwargs) -> TextTestResult: ...
def run_tests(self, test_labels: List[str], extra_tests: List[Any] = ..., **kwargs) -> int: ...