From 0176b6f0bba3efd9d25dada9e004c790a9d699a9 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Mon, 7 Oct 2024 13:28:54 -0500 Subject: [PATCH] Show verbose logs during smoke test (#7984) --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92f5b769b..ee456dc81 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }}