From 91b82d564d5289ca8f734ab7db8dead6e4037ed1 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Mon, 9 Mar 2020 15:04:10 -0400
Subject: [PATCH] which pip fails and why

---
 .github/workflows/ci.yaml | 23 +++++++++++++++--------
 1 file changed, 15 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 9e84fdc..f6b653e 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -33,17 +33,24 @@ jobs:
       with:
         python-version: ${{ matrix.python-version }}
 
-    - name: Install dependencies
+    - name: "Install Dependencies"
       run: |
-        python -m pip install --upgrade pip
-        pip install wheel coverage
-
+        python -m pip -vvv install --upgrade pip
+    - name: "Install Dependencies"
+      run: |
+        python -m pip -vvv install wheel coverage
+    - name: "Install Dependencies"
+      run: |
+        python -m pip install -vvv git+https://github.com/LeastAuthority/privacypass@master#egg=privacypass
+    - name: "Install Dependencies"
+      run: |
+        python -m pip install -vvv git+https://github.com/tahoe-lafs/tahoe-lafs@master#egg=tahoe-lafs
+    - name: "Install Dependencies"
+      run: |
+        python -m pip install -vvv -r test-requirements.txt
     - name: "Install Dependencies"
       run: |
-        pip install git+https://github.com/LeastAuthority/privacypass@master#egg=privacypass
-        pip install git+https://github.com/tahoe-lafs/tahoe-lafs@master#egg=tahoe-lafs
-        python -m pip install -r test-requirements.txt
-        python -m pip install ./
+        python -m pip install -vvv ./
 
     - name: "Dump Python Environment"
       run: |
-- 
GitLab