From 1ecabef209fba8276e11ae360d9dbb7511021300 Mon Sep 17 00:00:00 2001 From: Philip Cook Date: Fri, 22 Mar 2024 14:26:31 -0400 Subject: [PATCH] coveralls recommends xml if the output is not being interpreted correctly --- .github/workflows/code-coverage.yml | 2 ++ tests/run_tests.sh | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml index ad2fb553..2f808614 100644 --- a/.github/workflows/code-coverage.yml +++ b/.github/workflows/code-coverage.yml @@ -25,3 +25,5 @@ jobs: - name: Coveralls uses: coverallsapp/github-action@v2.2.3 + with: + format: python diff --git a/tests/run_tests.sh b/tests/run_tests.sh index 8ffcdcf2..a875a532 100755 --- a/tests/run_tests.sh +++ b/tests/run_tests.sh @@ -49,7 +49,7 @@ $PYCMD test_bugs.py $@ if [[ $COVERAGE -eq 1 ]]; then coverage combine - coverage html + coverage xml fi