ENUM
AutomaticSchemesOptions.TargetSchemesGrouping 
Contents
- Cases
singleSchemebyNameSuffix(build:test:run:)notGrouped
 
swift
public enum TargetSchemesGrouping: Codable, Equatable, SendableAllows you to define what targets will be enabled for code coverage data gathering.
Cases 
singleScheme 
swift
case singleSchemeGenerate a single scheme for each project.
byNameSuffix(build:test:run:) 
swift
case byNameSuffix(build: Set<String>, test: Set<String>, run: Set<String>)Group schemes according to the suffix of their names.
notGrouped 
swift
case notGroupedGenerate a scheme for each target.
