Skip to content

Commit 5e7230f

Browse files
committed
Updates btcli runner
1 parent 8d78fde commit 5e7230f

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/check-btcli-tests.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,15 @@ jobs:
166166
source ${{ github.workspace }}/venv/bin/activate
167167
git checkout staging
168168
git fetch origin staging
169-
python3 -m pip install --upgrade pip uv
170-
uv pip install '.[dev]'
171-
uv pip install pytest
169+
170+
- name: Install uv
171+
uses: astral-sh/setup-uv@v4
172+
with:
173+
python-version: 3.13
174+
175+
- name: Install dependencies
176+
run: |
177+
uv sync --extras dev --dev
172178
173179
- name: Clone async-substrate-interface repo
174180
run: git clone https://github.com/opentensor/async-substrate-interface.git
@@ -249,7 +255,7 @@ jobs:
249255
pip uninstall async-substrate-interface -y
250256
uv pip install .
251257
252-
- name: Run SDK unit tests
258+
- name: Run BTCLI unit tests
253259
run: |
254260
source ${{ github.workspace }}/venv/bin/activate
255261
pytest ${{ github.workspace }}/btcli/tests/unit_tests

0 commit comments

Comments
 (0)