Files
odoo-stubs/odoo-stubs/tests/loader.pyi
Trinh Anh Ngoc f8d2546c77 Cleanup
2023-05-19 18:21:48 +07:00

10 lines
347 B
Python

from typing import Iterator
from ..tests import OdooSuite
from .runner import OdooTestResult
def get_test_modules(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: ...