diff --git a/.circleci/report-coverage.sh b/.circleci/report-coverage.sh index c10f5d87521883d1a2365df26c9361f4a6b9a062..a5b86f168a8ac5162e35af46f169222038f02a0f 100755 --- a/.circleci/report-coverage.sh +++ b/.circleci/report-coverage.sh @@ -1,8 +1,7 @@ #! /usr/bin/env nix-shell #! nix-shell -i bash -p "python.withPackages (ps: [ ps.codecov ])" find ./result-doc/share/doc -cp ./result-doc/share/doc/*/.coverage.* ./ -python -m coverage combine +cp ./result-doc/share/doc/*/.coverage ./ python -m coverage report python -m coverage xml codecov --file coverage.xml diff --git a/zkapauthorizer.nix b/zkapauthorizer.nix index 34261bc76ea69f1476158f5a6e93dde1c05d62b0..d74c8dd75ee399803662dd586978ba0aba7010ff 100644 --- a/zkapauthorizer.nix +++ b/zkapauthorizer.nix @@ -50,7 +50,7 @@ buildPythonPackage rec { runHook preCheck "${pyflakes}/bin/pyflakes" src/_zkapauthorizer ZKAPAUTHORIZER_HYPOTHESIS_PROFILE=${hypothesisProfile'} python -m ${if collectCoverage - then "coverage run --branch --source _zkapauthorizer,twisted.plugins.zkapauthorizer --module" + then "coverage run --debug=config --module" else "" } twisted.trial ${extraTrialArgs} ${testSuite'} runHook postCheck @@ -58,6 +58,7 @@ buildPythonPackage rec { postCheck = if collectCoverage then '' + python -m coverage combine python -m coverage html mkdir -p "$doc/share/doc/${name}" cp -vr .coverage htmlcov "$doc/share/doc/${name}"