From c9f6c0b8f83619b04b851b724b5f4661222d41da Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Thu, 7 May 2020 20:31:00 -0400 Subject: [PATCH] dump output paths to help debug failure to copy coverage out of nix build --- .circleci/report-coverage.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/report-coverage.sh b/.circleci/report-coverage.sh index 61be54a..c10f5d8 100755 --- a/.circleci/report-coverage.sh +++ b/.circleci/report-coverage.sh @@ -1,5 +1,6 @@ #! /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 python -m coverage report -- GitLab