From 507da9df661c1b9dd11e5819e77fc2dc676a503e Mon Sep 17 00:00:00 2001 From: Matt Daily Date: Mon, 3 Jun 2024 11:10:50 -0700 Subject: [PATCH] Convert coverage to xml since the coveralls action can't find coverage in the runner environment. --- .github/workflows/build.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c9ace3d..1d26803 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -29,7 +29,9 @@ jobs: python -m pip install 'poetry' poetry install - name: Run tests - run: poetry run coverage run -m pytest + run: | + poetry run coverage run -m pytest + poetry run coverage xml - name: Generate and send coveralls report uses: coverallsapp/github-action@v2 with: