File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 2929 # Need to grab the SDK version for the wheel name
3030 - name : Extract SDK Version
3131 run : echo "SDK_VERSION=$(python -c 'import version; print(version.SDK_VERSION)')" >> $GITHUB_ENV
32+
33+ - name : Make test script executable
34+ run : chmod +x run_test.sh
3235
3336 - name : Build wheels
3437 env :
3740 CIBW_MANYLINUX_AARCH64_IMAGE : " quay.io/pypa/manylinux_2_34_aarch64"
3841 CIBW_ARCHS : " native"
3942 CIBW_BEFORE_TEST : " pip install pydantic cryptography"
40- CIBW_TEST_COMMAND : python3 ${{github.workspace}}/example/example.py
43+ CIBW_TEST_COMMAND : ${{github.workspace}}/run_test.sh
4144 MACOSX_DEPLOYMENT_TARGET : 11.0 # Required for building on macOS
4245 OP_SERVICE_ACCOUNT_TOKEN : ${{ secrets.TEST_SERVICE_ACCOUNT_TOKEN }}
4346 continue-on-error : true
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+
4+ echo " Running example.py"
5+ python example/example.py
You can’t perform that action at this time.
0 commit comments