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 702a246 commit c907374Copy full SHA for c907374
.github/workflows/build-binaries.yml
@@ -57,12 +57,15 @@ jobs:
57
# Install the wheel in a new venv and run a test
58
- name: Test wheel
59
run: |
60
+ mkdir __test_wheel__
61
+ cd __test_wheel__
62
python -m venv .test-venv
63
./.test-venv/bin/pip install 'protobuf>=3.20' 'types-protobuf>=3.20' 'typing-extensions<5,>=4.2.0'
- ./.test-venv/bin/pip install --no-index --find-links=./dist temporalio
64
+ ./.test-venv/bin/pip install --no-index --find-links=../dist temporalio
65
./.test-venv/bin/pip install pytest
66
./.test-venv/bin/python -m pytest -k tests/test_activity_hello
- rm -r .test-venv
67
+ cd ..
68
+ rm -r __test_wheel__
69
70
# Upload dist
71
- uses: actions/upload-artifact@v4
0 commit comments