def test():
    """Run the unit tests."""
    raise SystemExit(_test())
Esempio n. 2
0
def test(args):
    """Run the unit tests."""
    if len(args) == 0:
        raise SystemExit(_test())
    else:
        raise SystemExit(_test_file(args[0]))
Esempio n. 3
0
def test():
    """Run the unit tests."""
    raise SystemExit(_test())
Esempio n. 4
0
def test(args: List[str]) -> None:
    """Run the unit tests."""
    raise SystemExit(_test(args))