1 2 3 4 5 6 7
#!/usr/bin/env python import sys from build import main as build from test import main as test build(sys.argv) test(sys.argv)