From cee08f73f6fc72f291d49d13b883adcabb88f7d4 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Thu, 7 May 2020 20:14:28 -0400
Subject: [PATCH] Upload coverage in xml format

codecov docs say that xml is supported and explicitly call out Python
".coverage" format as unsupported.

https://docs.codecov.io/docs/supported-report-formats
---
 .circleci/report-coverage.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.circleci/report-coverage.sh b/.circleci/report-coverage.sh
index 3da8ae7..b8f3116 100755
--- a/.circleci/report-coverage.sh
+++ b/.circleci/report-coverage.sh
@@ -3,4 +3,5 @@
 cp ./result-doc/share/doc/*/.coverage ./
 python -m coverage combine .coverage
 python -m coverage report
-codecov --file .coverage
+python -m coverage xml
+codecov --file coverage.xml
-- 
GitLab