From fdbb0fc0897d48bd726c05e60a5229c7fea9cbce Mon Sep 17 00:00:00 2001 From: Stefan Ceriu Date: Mon, 9 May 2022 14:02:18 +0300 Subject: [PATCH] Generate cobertura xml report for codecov to pick up --- fastlane/Fastfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 5443f7f58..9386955aa 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -92,6 +92,14 @@ end lane :tests do run_tests() + + slather( + cobertura_xml: true, + output_directory: "./fastlane/test_output", + proj: "ElementX.xcodeproj", + scheme: "ElementX", + ) + end desc "Upload IPA to Diawi"