@@ -180,7 +180,6 @@ jobs:
180
180
echo "Current branch: $(git rev-parse --abbrev-ref HEAD)"
181
181
182
182
- name : Install async-substrate-interface package
183
- working-directory : ${{ github.workspace }}
184
183
run : |
185
184
source ${{ github.workspace }}/venv/bin/activate
186
185
python3 -m pip uninstall async-substrate-interface -y
@@ -195,7 +194,6 @@ jobs:
195
194
run : docker load -i subtensor-localnet.tar
196
195
197
196
- name : Run tests
198
- working-directory : ${{ github.workspace }}
199
197
run : |
200
198
source ${{ github.workspace }}/venv/bin/activate
201
199
pytest ${{ matrix.test-file }} -s
@@ -242,18 +240,13 @@ jobs:
242
240
git checkout ${{ github.event.pull_request.head.ref }}
243
241
echo "Current branch: $(git rev-parse --abbrev-ref HEAD)"
244
242
245
- - name : Check-out repository
246
- uses : actions/checkout@v4
247
-
248
243
- name : Install async-substrate-interface package
249
- working-directory : ${{ github.workspace }}
250
244
run : |
251
245
source ${{ github.workspace }}/venv/bin/activate
252
246
python3 -m pip uninstall async-substrate-interface -y
253
247
python3 -m pip install .
254
248
255
249
- name : Run SDK unit tests
256
- working-directory : ${{ github.workspace }}
257
250
run : |
258
251
source ${{ github.workspace }}/venv/bin/activate
259
252
pytest ${{ github.workspace }}/btcli/tests/unit_tests
0 commit comments