@@ -180,7 +180,6 @@ jobs:
180180 echo "Current branch: $(git rev-parse --abbrev-ref HEAD)"
181181
182182 - name : Install async-substrate-interface package
183- working-directory : ${{ github.workspace }}
184183 run : |
185184 source ${{ github.workspace }}/venv/bin/activate
186185 python3 -m pip uninstall async-substrate-interface -y
@@ -195,7 +194,6 @@ jobs:
195194 run : docker load -i subtensor-localnet.tar
196195
197196 - name : Run tests
198- working-directory : ${{ github.workspace }}
199197 run : |
200198 source ${{ github.workspace }}/venv/bin/activate
201199 pytest ${{ matrix.test-file }} -s
@@ -242,18 +240,13 @@ jobs:
242240 git checkout ${{ github.event.pull_request.head.ref }}
243241 echo "Current branch: $(git rev-parse --abbrev-ref HEAD)"
244242
245- - name : Check-out repository
246- uses : actions/checkout@v4
247-
248243 - name : Install async-substrate-interface package
249- working-directory : ${{ github.workspace }}
250244 run : |
251245 source ${{ github.workspace }}/venv/bin/activate
252246 python3 -m pip uninstall async-substrate-interface -y
253247 python3 -m pip install .
254248
255249 - name : Run SDK unit tests
256- working-directory : ${{ github.workspace }}
257250 run : |
258251 source ${{ github.workspace }}/venv/bin/activate
259252 pytest ${{ github.workspace }}/btcli/tests/unit_tests
0 commit comments