Update stubs

This commit is contained in:
Trinh Anh Ngoc
2022-10-12 00:11:56 +07:00
parent b714b79c3d
commit dc6e56e1ce
3 changed files with 23 additions and 24 deletions

View File

@@ -1,9 +1,10 @@
from typing import Any
from typing import Iterator
_logger: Any
from .runner import OdooTestResult
from ..tests import OdooSuite
def get_test_modules(module): ...
def _get_tests_modules(path, module): ...
def make_suite(module_names, position: str = ...): ...
def run_suite(suite, module_name: Any | None = ...): ...
def unwrap_suite(test) -> None: ...
def get_test_modules(module: str) -> list: ...
def _get_tests_modules(path: str, module: str) -> list: ...
def make_suite(module_names: list[str], position: str = ...) -> OdooSuite: ...
def run_suite(suite: OdooSuite, module_name: str | None = ...) -> OdooTestResult: ...
def unwrap_suite(test) -> Iterator: ...