Skip to content
Snippets Groups Projects
Unverified Commit 40e0628c authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

dependency installation seems to work now

Get rid of the -vvv and give the steps better names
parent c223573b
No related branches found
No related tags found
1 merge request!100Windows CI
......@@ -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: |
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment