Skip to content

Commit

Permalink
add missing ci dep
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey committed Dec 30, 2023
1 parent 6115e1f commit 2df912e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
maturin-version: ${{ env.maturin_version }}
- name: Install built wheel
run: |
pip install pytest pytest-asyncio based58 pybip39 typing-extensions jsonalias
pip install pytest pytest-asyncio based58 pybip39 mnemonic typing-extensions jsonalias
pip install ${{ env.name }} --no-index --no-dependencies --find-links dist --force-reinstall
pytest
Expand All @@ -61,7 +61,7 @@ jobs:
maturin-version: ${{ env.maturin_version }}
- name: Install built wheel
run: |
pip install pytest pytest-asyncio based58 pybip39 typing-extensions jsonalias
pip install pytest pytest-asyncio based58 pybip39 mnemonic typing-extensions jsonalias
pip install ${{ env.name }} --no-index --no-dependencies --find-links dist --force-reinstall
pytest
- name: Upload wheels
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
maturin-version: ${{ env.maturin_version }}
- name: Install built wheel
run: |
python -m pip install pytest pytest-asyncio based58 pybip39 typing-extensions jsonalias
python -m pip install pytest pytest-asyncio based58 pybip39 mnemonic typing-extensions jsonalias
python -m pip install ${{ env.name }} --no-index --no-dependencies --find-links dist --force-reinstall
python -m pytest --ignore=tests/bankrun
- name: Upload wheels
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
- name: Install built wheel
if: matrix.target == 'x86_64'
run: |
pip install pytest pytest-asyncio based58 pybip39 typing-extensions jsonalias
pip install pytest pytest-asyncio based58 pybip39 mnemonic typing-extensions jsonalias
pip install ${{ env.name }} --no-index --no-dependencies --find-links dist --force-reinstall
pytest
- name: Upload wheels
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
options: -v ${{ github.workspace }}:/io -w /io
run: |
apk add py3-pip
pip3 install -U pip pytest pytest-asyncio based58 pybip39 typing-extensions jsonalias --break-system-packages
pip3 install -U pip pytest pytest-asyncio based58 pybip39 mnemonic typing-extensions jsonalias --break-system-packages
pip3 install ${{ env.name }} --find-links /io/dist/ --force-reinstall --no-index --no-dependencies --break-system-packages
python3 -m pytest
- name: Upload wheels
Expand Down

0 comments on commit 2df912e

Please sign in to comment.