Beispiel #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])
Beispiel #2
0
def check_whole_repo_tests():
    install.ensure_shellcheck()
    subprocess.check_call([sys.executable, "-m", "pytest", tools.REPO_TESTS])
Beispiel #3
0
def check_whole_repo_tests():
    install.ensure_shellcheck()
    subprocess.check_call([
        sys.executable, '-m', 'pytest', tools.REPO_TESTS
    ])
Beispiel #4
0
def check_shellcheck():
    install.ensure_shellcheck()
    subprocess.check_call([install.SHELLCHECK] +
                          [f for f in tools.all_files() if f.endswith('.sh')])