From b9bd40a970253e54a01e7678fc63f88632ccd246 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Thu, 7 May 2020 12:00:22 -0400
Subject: [PATCH] Name the beast

---
 .circleci/report-coverage.sh | 2 +-
 .github/workflows/ci.yaml    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.circleci/report-coverage.sh b/.circleci/report-coverage.sh
index 1b987d2..3da8ae7 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 665dad5..b2ed20c 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
 
-- 
GitLab