From 2df912e6a169dd2eb79115e5528f9a914df161ec Mon Sep 17 00:00:00 2001 From: Kevin Heavey Date: Sun, 31 Dec 2023 01:24:06 +0400 Subject: [PATCH] add missing ci dep --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 673ffdd6..049c669b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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 @@ -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 @@ -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 @@ -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