From e9dd4876b8791ca054c9781c0ebb7e6816104c8c Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Thu, 8 Aug 2024 10:37:24 -0500 Subject: [PATCH] Skip git tests on Windows (#5891) Might be pushing it on test coverage, but these are some of our slowest tests we might get a significant speedup here. Part of #5713 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c4ecef57f..d8f9a71c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -283,7 +283,7 @@ jobs: CARGO_HOME: ${{ env.DEV_DRIVE }}/.cargo RUSTUP_HOME: ${{ env.DEV_DRIVE }}/.rustup run: | - cargo nextest run --no-default-features --features python,pypi,git --workspace --status-level skip --failure-output immediate-final --no-fail-fast -j 20 --final-status-level slow + cargo nextest run --no-default-features --features python,pypi --workspace --status-level skip --failure-output immediate-final --no-fail-fast -j 20 --final-status-level slow - name: "Smoke test" working-directory: ${{ env.DEV_DRIVE }}/uv