From 4750813053f1fc1a476d1ae7c8f3111e01ce7f7a Mon Sep 17 00:00:00 2001 From: Dominik Kapusta Date: Tue, 12 Dec 2023 15:49:00 +0100 Subject: [PATCH] Use CI configuration in CI for unit tests --- fastlane/Fastfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index c9c4b65ef2..e298708391 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -487,8 +487,12 @@ release in progress and you're making a follow-up internal release that includes end end + configuration = is_ci ? 'CI' : 'Debug' # Run tests - run_tests(scheme: 'DuckDuckGo Privacy Browser') + run_tests( + configuration: configuration, + scheme: 'DuckDuckGo Privacy Browser' + ) # Every thing looks good: commit and push unless modified_files.empty?