From c1ddb24fe41c41bdbe8e6341b5992e17c156b282 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Wed, 10 Apr 2024 10:55:48 -0500 Subject: [PATCH] Skip running test --- .github/workflows/ci.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2d1b8333..e379b1578 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,21 +101,21 @@ jobs: - name: "Cargo test" run: | which ld - cargo nextest run --workspace --status-level skip --failure-output immediate-final --no-fail-fast -j 12 --final-status-level slow + # cargo nextest run --workspace --status-level skip --failure-output immediate-final --no-fail-fast -j 12 --final-status-level slow - - name: "Smoke test (unix)" - if: ${{ matrix.os != 'windows' }} - run: | - uv="./target/debug/uv" - $uv venv - $uv pip install ruff + # - name: "Smoke test (unix)" + # if: ${{ matrix.os != 'windows' }} + # run: | + # uv="./target/debug/uv" + # $uv venv + # $uv pip install ruff - - name: "Smoke test (windows)" - if: ${{ matrix.os == 'windows' }} - run: | - Set-Alias -Name uv -Value ./target/debug/uv - uv venv - uv pip install ruff + # - name: "Smoke test (windows)" + # if: ${{ matrix.os == 'windows' }} + # run: | + # Set-Alias -Name uv -Value ./target/debug/uv + # uv venv + # uv pip install ruff # # Separate job for the nightly crate # windows-trampoline: