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