示例#1
0
def check_whole_repo_tests():
    install.ensure_shellcheck()
    subprocess.check_call([
        sys.executable, "-m", "pip", "install", "--upgrade",
        hp.HYPOTHESIS_PYTHON
    ])
    subprocess.check_call([sys.executable, "-m", "pytest", tools.REPO_TESTS])
示例#2
0
def check_whole_repo_tests():
    install.ensure_shellcheck()
    subprocess.check_call([sys.executable, "-m", "pytest", tools.REPO_TESTS])
示例#3
0
def check_whole_repo_tests():
    install.ensure_shellcheck()
    subprocess.check_call([
        sys.executable, '-m', 'pytest', tools.REPO_TESTS
    ])
示例#4
0
def check_shellcheck():
    install.ensure_shellcheck()
    subprocess.check_call([install.SHELLCHECK] +
                          [f for f in tools.all_files() if f.endswith('.sh')])