File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -185,8 +185,16 @@ jobs:
185
185
uvx ruff@0.6.9 check .
186
186
uvx ruff@latest check . || echo "Ignoring warnings from the latest version of ruff"
187
187
uv sync --extra min_dev
188
- [ "$RUNNER_OS" = "Windows" ] && .\\..\\.venv\\Scripts\\activate || source ../.venv/bin/activate
188
+ if [ "$RUNNER_OS" = "Windows" ]; then
189
+ .\\..\\.venv\\Scripts\\activate
190
+ else
191
+ source ../.venv/bin/activate
192
+ fi
189
193
pytest tests/test_opt_dep.py
190
194
uv sync --extra dev --extra sparse --extra samples
191
- [ "$RUNNER_OS" = "Windows" ] && .\\..\\.venv\\Scripts\\activate || source ../.venv/bin/activate
195
+ if [ "$RUNNER_OS" = "Windows" ]; then
196
+ .\\..\\.venv\\Scripts\\activate
197
+ else
198
+ source ../.venv/bin/activate
199
+ fi
192
200
pytest .
You can’t perform that action at this time.
0 commit comments