Skip to content

Commit 2785246

Browse files
committed
fix(ci): point publish-python-sdk.yml test-sdk at sdk/python Makefile
The previous step ran `cd tests/integration && make test-sdk`, but tests/integration/Makefile was deleted on 2026-04-24 (commit 6d0a1e3) during the integration-test reorg. The step has been silently broken on every Python SDK publish since. Switch to running sdk/python's own unit-test target (`make install-dev` + `make test`), which is what the Node side does for its own SDK. Integration tests can ride in on a separate workflow when needed.
1 parent fc72c93 commit 2785246

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/publish-python-sdk.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,16 @@ jobs:
3030
- name: Checkout repository
3131
uses: actions/checkout@v4
3232

33-
- name: Set up Docker Buildx
34-
uses: docker/setup-buildx-action@v3
33+
- name: Set up Python
34+
uses: actions/setup-python@v6
35+
with:
36+
python-version: '3.11'
3537

36-
- name: Run SDK integration tests
38+
- name: Install dev dependencies + run unit tests
3739
run: |
38-
cd tests/integration
39-
make test-sdk
40+
cd sdk/python
41+
make install-dev
42+
make test
4043
timeout-minutes: 10
4144

4245
build-wheels:

0 commit comments

Comments
 (0)