示例#1
0
def integration(c, module=None, runner=None, opts=None):
    """
    Run the integration test suite. May be slow!
    """
    opts = opts or ""
    opts += " --tests=integration/"
    test(c, module, runner, opts)
示例#2
0
文件: tasks.py 项目: shenkan/invoke
def integration(c, module=None, runner=None, opts=None):
    """
    Run the integration test suite. May be slow!
    """
    opts = opts or ""
    opts += " --tests=integration/"
    test(c, module, runner, opts)
示例#3
0
def integration(c):
    """
    Run high level integration test suite.
    """
    return test(c, opts="--tests=integration")
示例#4
0
def integration(c):
    """
    Run high level integration test suite.
    """
    return test(c, opts="--tests=integration")