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