From 5bea2dc27dbf167a0bcdde48c5177c0df753631b Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Thu, 9 Oct 2025 17:01:14 -0700 Subject: [PATCH] chore: temporarily disable Windows CI in test-e2e workflow (#234) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Temporarily removes windows-latest from the test-e2e job matrix to disable Windows end-to-end testing. Unit tests continue to run on Windows. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 14933d2..9822a8f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,7 +42,7 @@ jobs: needs: test # Run after unit tests pass strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-latest] # windows-latest temporarily disabled python-version: ["3.10", "3.11", "3.12", "3.13"] steps: