diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f6b653edd20565841c4185bdbd9a9b3f4d8f84c9..0b6af690f7c47e638d89a962ad98f8fa01c479d1 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: |