diff --git a/tools/install_and_test.py b/tools/install_and_test.py index 1eb81770c..79a7c2264 100755 --- a/tools/install_and_test.py +++ b/tools/install_and_test.py @@ -23,7 +23,7 @@ def call_with_print(command, cwd=None): def main(args): if os.environ.get('CERTBOT_NO_PIN') == '1': - command = [sys.executable, '-m', 'pip', '-q', '-e'] + command = [sys.executable, '-m', 'pip', '-e'] else: script_dir = os.path.dirname(os.path.abspath(__file__)) command = [sys.executable, os.path.join(script_dir, 'pip_install_editable.py')] @@ -50,7 +50,7 @@ def main(args): shutil.copy2("pytest.ini", temp_cwd) try: call_with_print(' '.join([ - sys.executable, '-m', 'pytest', '--quiet', pkg.replace('-', '_')]), cwd=temp_cwd) + sys.executable, '-m', 'pytest', pkg.replace('-', '_')]), cwd=temp_cwd) finally: shutil.rmtree(temp_cwd) diff --git a/tools/pip_install.py b/tools/pip_install.py index 8878674c9..354dce32b 100755 --- a/tools/pip_install.py +++ b/tools/pip_install.py @@ -83,10 +83,10 @@ def main(args): merge_requirements(tools_path, test_constraints, all_constraints) if requirements: - call_with_print('"{0}" -m pip install -q --constraint "{1}" --requirement "{2}"' + call_with_print('"{0}" -m pip install --constraint "{1}" --requirement "{2}"' .format(sys.executable, all_constraints, requirements)) - call_with_print('"{0}" -m pip install -q --constraint "{1}" {2}' + call_with_print('"{0}" -m pip install --constraint "{1}" {2}' .format(sys.executable, all_constraints, ' '.join(args))) finally: shutil.rmtree(working_dir)