# # Python unit test runner # # Author : Sander Mathijs van Veen # License: GPL version 3, see also the file `LICENSE'. # import sys from runner import main if len(sys.argv) < 2: print 'Usage: %s tests/test_COMPONENT.py' % sys.argv[0] sys.exit(1) # TODO parse verbosity option '-v', given in argv. verbose = 0 main(sys.argv[1:], verbose)