From e0dc3a44404d48ebc37a584a186fa45f88620167 Mon Sep 17 00:00:00 2001 From: Brendt Wohlberg Date: Tue, 31 Oct 2023 17:34:30 -0600 Subject: [PATCH 1/2] Limit coverage run --- .github/workflows/pytest.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index d357dd2..f9f6016 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -37,6 +37,7 @@ jobs: run: | $CONDA/bin/pytest --cov=sporco --cov-report=xml - name: Upload coverage to codecov + if: ${{ matrix.os == 'ubuntu-latest' }} && ${{ matrix.python-version == '3.9' }} uses: codecov/codecov-action@v2 with: env_vars: OS,PYTHON From 96910f240881abc1b6d7119f5c244ec4ab2fbe15 Mon Sep 17 00:00:00 2001 From: Brendt Wohlberg Date: Tue, 31 Oct 2023 18:09:48 -0600 Subject: [PATCH 2/2] Attempt to debug --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index f9f6016..408c82d 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -37,7 +37,7 @@ jobs: run: | $CONDA/bin/pytest --cov=sporco --cov-report=xml - name: Upload coverage to codecov - if: ${{ matrix.os == 'ubuntu-latest' }} && ${{ matrix.python-version == '3.9' }} + if: matrix.os == 'ubuntu-latest' uses: codecov/codecov-action@v2 with: env_vars: OS,PYTHON