File tree Expand file tree Collapse file tree 1 file changed +9
-10
lines changed
Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -94,22 +94,21 @@ jobs:
9494 echo "wheel=$WHEEL" >> $GITHUB_OUTPUT
9595
9696 - name : Create venv and install dependencies (Unix)
97- if : runner.os != 'Windows '
97+ if : runner.os != 'Linux '
9898 run : |
9999 uv venv .test-venv
100100 source .test-venv/bin/activate
101101 uv pip install rtc-wheel/*.whl ./livekit-api ./livekit-protocol
102102 uv pip install pytest pytest-asyncio numpy matplotlib
103103
104- # - name: Create venv and install dependencies (macOS)
105- # if: runner.os == 'macOS'
106- # run: |
107- # uv venv .test-venv
108- # source .test-venv/bin/activate
109- # # Use pip for wheel install to avoid uv's strict platform compatibility check
110- # pip install "${{ steps.select-wheel-macos.outputs.wheel }}"
111- # uv pip install ./livekit-api ./livekit-protocol
112- # uv pip install pytest pytest-asyncio numpy matplotlib
104+ - name : Create venv and install dependencies (macOS)
105+ if : runner.os == 'macOS'
106+ run : |
107+ uv venv .test-venv
108+ source .test-venv/bin/activate
109+ uv pip install "${{ steps.select-wheel-macos.outputs.wheel }}"
110+ uv pip install ./livekit-api ./livekit-protocol
111+ uv pip install pytest pytest-asyncio numpy matplotlib
113112
114113 - name : Create venv and install dependencies (Windows)
115114 if : runner.os == 'Windows'
You can’t perform that action at this time.
0 commit comments