def test():
    """Run the unit tests."""
    raise SystemExit(_test())
Пример #2
0
def test(args):
    """Run the unit tests."""
    if len(args) == 0:
        raise SystemExit(_test())
    else:
        raise SystemExit(_test_file(args[0]))
Пример #3
0
def test():
    """Run the unit tests."""
    raise SystemExit(_test())
Пример #4
0
def test(args: List[str]) -> None:
    """Run the unit tests."""
    raise SystemExit(_test(args))