blob: 65f6be624f5f192ecd6ce03b1329a380e9278e10 [file] [log] [blame]
#!/usr/bin/env python
# coding: utf-8
from __future__ import unicode_literals, division, absolute_import, print_function
import sys
if sys.version_info < (3,):
byte_cls = str
else:
byte_cls = bytes
def show_usage():
print('Usage: run.py (lint | tests [regex] | coverage)', file=sys.stderr)
sys.exit(1)
def get_arg(num):
if len(sys.argv) < num + 1:
return None
arg = sys.argv[num]
if isinstance(arg, byte_cls):
arg = arg.decode('utf-8')
return arg
if len(sys.argv) < 2 or len(sys.argv) > 3:
show_usage()
task = get_arg(1)
if task not in ('lint', 'tests', 'coverage'):
show_usage()
if task != 'tests' and len(sys.argv) == 3:
show_usage()
params = []
if task == 'lint':
from dev.lint import run
elif task == 'tests':
from dev.tests import run
matcher = get_arg(2)
if matcher:
params.append(matcher)
elif task == 'coverage':
from dev.coverage import run
run(*params)