Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Enable Code Coverage for all targets in scheme test action options #3111

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

lucasromanomr
Copy link

Added support for enable code coverage for all targets.

For auto scheme generation default valou ir False

xcodeproj(
        …
        scheme_autogeneration_config = xcschemes.autogeneration_config(
             test = xcschemes.autogeneration.test(
                 test_options = xcschemes.test_options(
                     app_language = "en",
                     app_region = "US",
                     code_coverage = False,
                 )
             )
        ),
        …
)

For configure in scheme:

xcschemes.scheme(
        …
        test = xcschemes.test(
            …
            test_options = xcschemes.test_options(
                app_language = "en",
                app_region = "US",
                code_coverage = True,
            ),
            …
        ),
        …
)
image

@lucasromanomr lucasromanomr requested a review from a team as a code owner November 19, 2024 18:25
@lucasromanomr lucasromanomr force-pushed the feat/add-coverage-options branch 2 times, most recently from f97b2b7 to b4e0ee1 Compare November 19, 2024 18:28
@lucasromanomr lucasromanomr force-pushed the feat/add-coverage-options branch from b4e0ee1 to 8d3e353 Compare November 19, 2024 18:30
@lucasromanomr lucasromanomr force-pushed the feat/add-coverage-options branch from 205a377 to f0b4bdf Compare November 19, 2024 18:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant