From 36007dc4a3b2b58bd0a00cd80f76ea3f287b3227 Mon Sep 17 00:00:00 2001 From: mjwen Date: Fri, 23 Feb 2024 23:14:27 -0600 Subject: [PATCH] Don't run pytest-cov for macOS in CI, which will fail --- .github/workflows/testing.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index f712137b..eea4fe36 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -60,6 +60,14 @@ jobs: python -m pip install git+https://github.com/yonatank93/ptemcee.git@enhance_v1.0.0 - name: Run tests + if: matrix.os == 'macos-latest' + shell: bash -el {0} + run: | + cd tests + pytest + + - name: Run tests + if: matrix.os == 'ubuntu-latest' shell: bash -el {0} run: | cd tests