From 3dc130760aeb2c841d0575c480ad8f26c24d0ce8 Mon Sep 17 00:00:00 2001 From: Andy Lee Date: Tue, 12 Aug 2025 12:50:33 -0700 Subject: [PATCH] fix: restore macOS 15 build matrix and correct test path - Add back macOS 15 configurations for Python 3.9-3.13 - Fix pytest path from test/ to tests/ (correct directory name) The macOS 15 support was accidentally missing from the matrix, and pytest was looking for the wrong directory name. --- .github/workflows/build-reusable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-reusable.yml b/.github/workflows/build-reusable.yml index d6a8bb5..b95c281 100644 --- a/.github/workflows/build-reusable.yml +++ b/.github/workflows/build-reusable.yml @@ -289,7 +289,7 @@ jobs: source .venv/bin/activate || source .venv/Scripts/activate # Run tests - pytest -v test/ + pytest -v tests/ - name: Run sanity checks (optional) run: |