Skip to content

Commit 246c8ad

Browse files
committed
ci: split install wheel and unittest steps on macos-arm64
1 parent bea683d commit 246c8ad

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/test-bdk-ffi-latest.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,11 @@ jobs:
130130
# see issue #350 for more information
131131
run: python3 -m build --wheel --config-setting=--build-option=--plat-name=macosx_11_0_arm64 --verbose
132132

133-
- name: "Install wheel and run tests"
134-
run: |
135-
pip3 install ./dist/*.whl
136-
python3 -m unittest discover --start "./tests/" --pattern "test_offline_*.py" --verbose
133+
- name: "Install wheel"
134+
run: pip3 install ./dist/*.whl
135+
136+
- name: "Run tests"
137+
run: python3 -m unittest discover --start "./tests/" --pattern "test_offline_*.py" --verbose
137138

138139
- name: "Upload artifact test"
139140
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)