Show verbose logs during smoke test (#7984)

This commit is contained in:
Zanie Blue 2024-10-07 13:28:54 -05:00 committed by GitHub
parent a3e21d61e3
commit 0176b6f0bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 6 deletions

View File

@ -192,8 +192,8 @@ jobs:
- name: "Smoke test"
run: |
uv="./target/debug/uv"
$uv venv
$uv pip install ruff
$uv venv -v
$uv pip install ruff -v
- name: "Smoke test completion"
run: |
@ -238,8 +238,8 @@ jobs:
- name: "Smoke test"
run: |
uv="./target/debug/uv"
$uv venv
$uv pip install ruff
$uv venv -v
$uv pip install ruff -v
cargo-test-windows:
timeout-minutes: 15
@ -296,8 +296,8 @@ jobs:
UV_STACK_SIZE: 2000000 # 2 megabyte, double the default on windows
run: |
Set-Alias -Name uv -Value ./target/debug/uv
uv venv
uv pip install ruff
uv venv -v
uv pip install ruff -v
- name: "Smoke test completion"
working-directory: ${{ env.UV_WORKSPACE }}