From a51c2b896ec38767d7a2b31c9e883bee725b2e78 Mon Sep 17 00:00:00 2001 From: Maurice Garcia Date: Sun, 25 Jan 2026 18:23:51 -0700 Subject: [PATCH] Fix pip install command for test dependencies Ensure pytest installs in macOS CI - Require test extras install without ignoring failures --- .github/workflows/macos-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macos-ci.yml b/.github/workflows/macos-ci.yml index d63dd1e..aaee302 100644 --- a/.github/workflows/macos-ci.yml +++ b/.github/workflows/macos-ci.yml @@ -40,7 +40,7 @@ jobs: - name: Install Project run: | python -m pip install -e . - python -m pip install -e ".[test]" || true + python -m pip install -e ".[test]" - name: Run Tests env: