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