From 3444488ab22063d5ce7abb2202679c5c6693c13c Mon Sep 17 00:00:00 2001 From: Donald Stufft <donald@stufft.io> Date: Sun, 24 Feb 2013 14:30:08 -0500 Subject: [PATCH] Don't hide pip output --- tasks.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks.py b/tasks.py index 871ef2a7..51e1dfc5 100644 --- a/tasks.py +++ b/tasks.py @@ -51,11 +51,11 @@ def install_sodium(): def install_requirements(dev=False): if dev: # Install once to get the tests extra - run("pip install file://$PWD#egg=pynacl[tests]", hide="out") + run("pip install file://$PWD#egg=pynacl[tests]") # Install again to get an editable install - run("pip install -e .", hide="out") + run("pip install -e .") else: - run("pip install .", hide="out") + run("pip install .") @task -- GitLab