From 9e1bfc384201856f886ee9872dc7336f9da3fbea Mon Sep 17 00:00:00 2001
From: Leo Singer <leo.singer@ligo.org>
Date: Fri, 24 Aug 2018 13:22:23 -0400
Subject: [PATCH] Run pip more verbosely

One of these pip commands failed last night and provided no
diagnostic information. In general, it's probably good for
most of the nightly build to be as verbose as possible.
---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index df2b70400e..b19b57273e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -437,7 +437,7 @@ nightly:macos:elcapitan:
     # Test
     - ${PYPREFIX}/bin/virtualenv test
     - source test/bin/activate
-    - pip install -q wheelhouse/*
+    - pip install wheelhouse/*
     - python -c 'import lal, lalframe, lalmetaio'
   dependencies: []
   only:
@@ -458,7 +458,7 @@ nightly:macos:elcapitan:
     # Enter virtualenv so that we have a controlled version of Numpy
     - virtualenv-${PYVERS} env
     - source env/bin/activate
-    - pip install -q git+https://github.com/lpsinger/delocate@fix-duplicate-libs glob2 'numpy==1.14.5;python_version>="3.7"' 'numpy==1.7.0;python_version<"3.7"'
+    - pip install git+https://github.com/lpsinger/delocate@fix-duplicate-libs glob2 'numpy==1.14.5;python_version>="3.7"' 'numpy==1.7.0;python_version<"3.7"'
     # Build wheel
     - ./00boot
     - ./configure PYTHON=$(which python${PYVERS}) --enable-mpi --enable-swig-python ${EXTRA_CONFIG_FLAGS} LDFLAGS=-Wl,-headerpad_max_install_names
@@ -468,7 +468,7 @@ nightly:macos:elcapitan:
     # Test
     - virtualenv-${PYVERS} test
     - source test/bin/activate
-    - pip install -q wheelhouse/*
+    - pip install wheelhouse/*
     - python -c 'import lal, lalframe, lalmetaio'
   dependencies: []
   only:
-- 
GitLab