From 61dea527c2a0cfd2875338edfad26190176128bc Mon Sep 17 00:00:00 2001 From: Ben-Cassese Date: Mon, 15 Apr 2024 12:55:02 -0400 Subject: [PATCH] explicitly re-run tests for 3.11 --- .github/workflows/tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e238b54..95199d7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,6 +26,12 @@ jobs: run: tox env: PLATFORM: ${{ matrix.platform }} + - name: Generate code coverage report + if: matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.11' + run: | + python -m pip install coverage + coverage run --source squishyplanet --module pytest + coverage xml - name: Coveralls GitHub Action if: matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.11' uses: coverallsapp/github-action@v2.2.3