From 94e2c1efa1366074aadd05db2b2eaf80189c8adc Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Thu, 7 May 2020 10:49:41 -0400 Subject: [PATCH] Try a different way of setting up nix-shell --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4ec8c4e..6421355 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -145,8 +145,9 @@ jobs: - run: name: "Report Coverage" - shell: "nix-shell -p 'python.withPackages (ps: [ ps.codecov ])'" + shell: "nix-shell" command: | + #! nix-shell -p 'python.withPackages (ps: [ ps.codecov ])' cp ./result-doc/share/doc/*/.coverage ./ python -m coverage combine python -m coverage report -- GitLab