fastlane/lib/fastlane/actions/spm.rb in fastlane-2.166.0 vs fastlane/lib/fastlane/actions/spm.rb in fastlane-2.167.0

- old
+ new

@@ -9,10 +9,11 @@ cmd << "--package-path #{params[:package_path]}" if params[:package_path] cmd << "--configuration #{params[:configuration]}" if params[:configuration] cmd << "--disable-sandbox" if params[:disable_sandbox] cmd << "--verbose" if params[:verbose] cmd << params[:command] if package_commands.include?(params[:command]) + cmd << "--enable-code-coverage" if params[:enable_code_coverage] && params[:command] == 'generate-xcodeproj' if params[:xcconfig] cmd << "--xcconfig-overrides #{params[:xcconfig]}" end if params[:xcpretty_output] cmd += ["2>&1", "|", "xcpretty", "--#{params[:xcpretty_output]}"] @@ -42,9 +43,14 @@ description: "The swift command (one of: #{available_commands.join(', ')})", default_value: "build", verify_block: proc do |value| UI.user_error!("Please pass a valid command. Use one of the following: #{available_commands.join(', ')}") unless available_commands.include?(value) end), + FastlaneCore::ConfigItem.new(key: :enable_code_coverage, + env_name: "FL_SPM_ENABLE_CODE_COVERAGE", + description: "Enables code coverage for the generated Xcode project when using the generate-xcodeproj command", + is_string: false, + optional: true), FastlaneCore::ConfigItem.new(key: :build_path, env_name: "FL_SPM_BUILD_PATH", description: "Specify build/cache directory [default: ./.build]", optional: true), FastlaneCore::ConfigItem.new(key: :package_path,