File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 62
62
cd __test_wheel__
63
63
cp -r ../tests .
64
64
python -m venv .venv
65
- ./.venv/bin/pip install 'protobuf>=3.20' 'types-protobuf>=3.20' 'typing-extensions<5,>=4.2.0' pytest pytest_asyncio grpcio pydantic opentelemetry-api opentelemetry-sdk python-dateutil
66
- ./.venv/bin/pip install --no-index --find-links=../dist temporalio
67
- ./.venv/bin/python -m pytest -s -k test_workflow_hello
65
+ bindir=bin
66
+ if [ "$RUNNER_OS" = "Windows" ]; then
67
+ bindir=Scripts
68
+ fi
69
+ ./.venv/$bindir/pip install 'protobuf>=3.20' 'types-protobuf>=3.20' 'typing-extensions<5,>=4.2.0' pytest pytest_asyncio grpcio pydantic opentelemetry-api opentelemetry-sdk python-dateutil
70
+ ./.venv/$bindir/pip install --no-index --find-links=../dist temporalio
71
+ ./.venv/$bindir/python -m pytest -s -k test_workflow_hello
68
72
69
73
# Upload dist
70
74
- uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments