diff --git a/.circleci/config.yml b/.circleci/config.yml index 72f66bc8c7a659eba98654addf5be301c1e51360..e3b50abbea47c0fd02a29a478e594cac2f464c83 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -145,9 +145,12 @@ jobs: - run: name: "Report Coverage" + shell: "nix-shell -p 'python.withPackages (ps: [ ps.codecov ])'" command: | - nix-shell -p 'python.withPackages (ps: [ ps.codecov ])' --run \ - 'cp ./result-doc/share/doc/*/.coverage ./; coverage combine; codecov --file .coverage' + cp ./result-doc/share/doc/*/.coverage ./ + python -m coverage combine + python -m coverage report + codecov --file .coverage' workflows: version: 2 diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b64117daf8257230e49ce1c955088a44707702b1..e60523d99b7eb4ec214a5ca0b06c7284ef692fc6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -68,6 +68,7 @@ jobs: - name: "Convert Coverage" run: | + coverage report coverage xml - uses: codecov/codecov-action@v1 diff --git a/zkapauthorizer.nix b/zkapauthorizer.nix index a718487de5a73e6710982f1a449fd666c47206e0..34261bc76ea69f1476158f5a6e93dde1c05d62b0 100644 --- a/zkapauthorizer.nix +++ b/zkapauthorizer.nix @@ -61,7 +61,6 @@ buildPythonPackage rec { python -m coverage html mkdir -p "$doc/share/doc/${name}" cp -vr .coverage htmlcov "$doc/share/doc/${name}" - python -m coverage report '' else ""; }