Skip to content

Commit 8bba2eb

Browse files
committed
delete script
1 parent fce070e commit 8bba2eb

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

.github/workflows/wheels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ jobs:
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 ${{github.workspace}}/run_example.sh
3532

3633
- name: Build wheels
3734
env:
@@ -40,7 +37,10 @@ jobs:
4037
CIBW_MANYLINUX_AARCH64_IMAGE: "quay.io/pypa/manylinux_2_34_aarch64"
4138
CIBW_ARCHS: "native"
4239
CIBW_BEFORE_TEST: "pip install pydantic cryptography"
43-
CIBW_TEST_COMMAND: ${{github.workspace}}/run_example.sh
40+
CIBW_TEST_COMMAND: |
41+
cd ${{github.workspace}}
42+
ls
43+
python example/example.py
4444
MACOSX_DEPLOYMENT_TARGET: 11.0 # Required for building on macOS
4545
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.TEST_SERVICE_ACCOUNT_TOKEN }}
4646
continue-on-error: true

run_example.sh

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)