We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7ea8f1 commit 5b02765Copy full SHA for 5b02765
.github/workflows/build-binaries.yml
@@ -54,8 +54,14 @@ jobs:
54
# Build the wheel
55
- run: uv run cibuildwheel --output-dir dist
56
57
- # Run a test
58
- - run: uv run pytest -k test_activity_hello
+ # Install the wheel in a new venv and run a test
+ - name: Test wheel
59
+ run: |
60
+ python -m venv .test-venv
61
+ ./.test-venv/bin/pip install --no-index --find-links=./dist temporalio
62
+ ./.test-venv/bin/pip install pytest
63
+ ./.test-venv/bin/python -m pytest -k tests/test_activity_hello
64
+ rm -r .test-venv
65
66
# Upload dist
67
- uses: actions/upload-artifact@v4
0 commit comments