Skip to content

Commit b01c1c3

Browse files
committed
fix integration and unit tests + e2e
1 parent 1ed3dc1 commit b01c1c3

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

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

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -179,11 +179,12 @@ jobs:
179179
git checkout ${{ github.event.pull_request.head.ref }}
180180
echo "Current branch: $(git rev-parse --abbrev-ref HEAD)"
181181
182-
# - name: Install async-substrate-interface package
183-
# run: |
184-
# source ${{ github.workspace }}/venv/bin/activate
185-
# python3 -m pip uninstall async-substrate-interface -y
186-
# python3 -m pip install .
182+
- name: Install async-substrate-interface package
183+
working-directory: ${{ github.workspace }}/async-substrate-interface
184+
run: |
185+
source ${{ github.workspace }}/venv/bin/activate
186+
python3 -m pip uninstall async-substrate-interface -y
187+
python3 -m pip install .
187188
188189
- name: Download Cached Docker Image
189190
uses: actions/download-artifact@v4
@@ -241,6 +242,7 @@ jobs:
241242
echo "Current branch: $(git rev-parse --abbrev-ref HEAD)"
242243
243244
- name: Install /async-substrate-interface package
245+
working-directory: ${{ github.workspace }}/async-substrate-interface
244246
run: |
245247
source ${{ github.workspace }}/venv/bin/activate
246248
pip uninstall async-substrate-interface -y

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -177,13 +177,13 @@ jobs:
177177
git fetch origin ${{ github.event.pull_request.head.ref }}
178178
git checkout ${{ github.event.pull_request.head.ref }}
179179
echo "Current branch: $(git rev-parse --abbrev-ref HEAD)"
180-
#
181-
# - name: Install async-substrate-interface package
182-
# working-directory: ${{ github.workspace }}
183-
# run: |
184-
# source ${{ github.workspace }}/venv/bin/activate
185-
# python3 -m pip uninstall async-substrate-interface -y
186-
# python3 -m pip install .
180+
181+
- name: Install async-substrate-interface package
182+
working-directory: ${{ github.workspace }}/async-substrate-interface
183+
run: |
184+
source ${{ github.workspace }}/venv/bin/activate
185+
python3 -m pip uninstall async-substrate-interface -y
186+
python3 -m pip install .
187187
188188
- name: Download Cached Docker Image
189189
uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)