diff --git a/.circleci/report-coverage.sh b/.circleci/report-coverage.sh index 1b987d2ed982e91ff2912aa8aa386d8e11dd86b6..3da8ae750d4e3f470e3a5f0cfcebed88b0eed880 100644 --- a/.circleci/report-coverage.sh +++ b/.circleci/report-coverage.sh @@ -1,6 +1,6 @@ #! /usr/bin/env nix-shell #! nix-shell -i bash -p "python.withPackages (ps: [ ps.codecov ])" cp ./result-doc/share/doc/*/.coverage ./ -python -m coverage combine +python -m coverage combine .coverage python -m coverage report codecov --file .coverage diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 665dad5c8d9b0573c3bfe7c99c9bee230f52dc18..b2ed20ca3915e637e5956a4d1caae5ce7fd87ea8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -68,7 +68,7 @@ jobs: - name: "Convert Coverage" run: | - coverage combine + coverage combine .coverage coverage report coverage xml