def test():
    """Run the unit tests."""
    raise SystemExit(_test())
예제 #2
0
파일: pavement.py 프로젝트: jima80525/pyres
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
파일: pavement.py 프로젝트: helq/pytropos
def test(args: List[str]) -> None:
    """Run the unit tests."""
    raise SystemExit(_test(args))