Skip to content

Commit 56d5d67

Browse files
committed
unify
1 parent ebea525 commit 56d5d67

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/tests.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -93,23 +93,23 @@ jobs:
9393
")
9494
echo "wheel=$WHEEL" >> $GITHUB_OUTPUT
9595
96-
- name: Create venv and install dependencies (Linux)
97-
if: runner.os == 'Linux'
96+
- name: Create venv and install dependencies (Unix)
97+
if: runner.os != 'Windows'
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+
# # 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
113113

114114
- name: Create venv and install dependencies (Windows)
115115
if: runner.os == 'Windows'

0 commit comments

Comments
 (0)