From 403a973b5f3c8c64cc02b40eaae4bccd4cf0470a Mon Sep 17 00:00:00 2001 From: Greg Lucas Date: Mon, 11 Mar 2024 09:25:02 -0600 Subject: [PATCH] CI: Only run coverage on a single runner This bumps the coveralls job to Python 3.12 ubuntu-latest so that only one job gets run. It has been flaky when submitting from two sources. --- .github/workflows/ci-testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-testing.yml b/.github/workflows/ci-testing.yml index 766b12529..0dd968c6c 100644 --- a/.github/workflows/ci-testing.yml +++ b/.github/workflows/ci-testing.yml @@ -38,7 +38,7 @@ jobs: - name: Coverage packages id: coverage # only want the coverage to be run on the latest ubuntu - if: matrix.python-version == '3.11' && matrix.os == 'ubuntu-latest' + if: matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest' run: | echo "CYTHON_COVERAGE=1" >> $GITHUB_ENV # Also add doctest here to avoid windows runners which expect a different path separator