From 40e0628c3d62ddd71b8cd62446a5b524c89a170a Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Mon, 9 Mar 2020 15:43:05 -0400 Subject: [PATCH] dependency installation seems to work now Get rid of the -vvv and give the steps better names --- .github/workflows/ci.yaml | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f6b653e..0b6af69 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,24 +33,29 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: "Install Dependencies" + - name: "Upgrade Pip" run: | - python -m pip -vvv install --upgrade pip - - name: "Install Dependencies" + python -m pip install --upgrade pip + + - name: "Install CI Dependencies" run: | - python -m pip -vvv install wheel coverage - - name: "Install Dependencies" + python -m pip install wheel coverage + + - name: "Install PrivacyPass master@HEAD" run: | - python -m pip install -vvv git+https://github.com/LeastAuthority/privacypass@master#egg=privacypass - - name: "Install Dependencies" + python -m pip install git+https://github.com/LeastAuthority/privacypass@master#egg=privacypass + + - name: "Install Tahoe-LAFS master@HEAD" run: | - python -m pip install -vvv git+https://github.com/tahoe-lafs/tahoe-lafs@master#egg=tahoe-lafs - - name: "Install Dependencies" + python -m pip install git+https://github.com/tahoe-lafs/tahoe-lafs@master#egg=tahoe-lafs + + - name: "Install Test Dependencies" run: | - python -m pip install -vvv -r test-requirements.txt - - name: "Install Dependencies" + python -m pip install -r test-requirements.txt + + - name: "Install ZKAPAuthorizer" run: | - python -m pip install -vvv ./ + python -m pip install ./ - name: "Dump Python Environment" run: | -- GitLab