From aa3be491d78432ea1fe5dc37018cb696d2a6c129 Mon Sep 17 00:00:00 2001 From: neuronull <9162534+neuronull@users.noreply.github.com> Date: Mon, 6 Oct 2025 13:38:17 -0700 Subject: [PATCH] Re-enable CI to run rust unit tests in desktop_native on Windows platform (#16711) * Re-enable CI to run rust unit tests in desktop_native on Windows platform * selectively exclude napi crate * use proper package name --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 64c4e0dff13..2770c1257ea 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -125,8 +125,8 @@ jobs: - name: Test Windows if: ${{ matrix.os=='windows-2022'}} - working-directory: ./apps/desktop/desktop_native/core - run: cargo test -- --test-threads=1 + working-directory: ./apps/desktop/desktop_native + run: cargo test --workspace --exclude=desktop_napi -- --test-threads=1 rust-coverage: name: Rust Coverage