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 8f6247cCopy full SHA for 8f6247c
.github/workflows/build-binaries.yml
@@ -54,8 +54,13 @@ 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
+ - run: |
59
+ python -m venv .test-venv
60
+ ./.test-venv/bin/pip install --no-index --find-links=./dist temporalio
61
+ ./.test-venv/bin/pip install pytest
62
+ ./.test-venv/bin/python -m pytest -k tests/test_activity_hello
63
+ rm -r .test-venv
64
65
# Upload dist
66
- uses: actions/upload-artifact@v4
0 commit comments