Skip running test

This commit is contained in:
Zanie Blue 2024-04-10 10:55:48 -05:00
parent 7651c9908a
commit c1ddb24fe4
1 changed files with 13 additions and 13 deletions

View File

@ -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: