Skip to content

Commit

Permalink
update autogeneration_config docs
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas Romano <[email protected]>
  • Loading branch information
lucasromanomr committed Nov 19, 2024
1 parent 8d3e353 commit 205a377
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/bazel.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ Creates a value for the [`scheme_autogeneration_config`](xcodeproj-scheme_autoge
| Name | Description | Default Value |
| :------------- | :------------- | :------------- |
| <a id="xcschemes.autogeneration_config-scheme_name_exclude_patterns"></a>scheme_name_exclude_patterns | A `list` of regex patterns used to skip creating matching autogenerated schemes.<br><br>Example:<br><br><pre><code class="language-starlark">xcodeproj(&#10; ...&#10; scheme_name_exclude_patterns = xcschemes.autogeneration_config(&#10; scheme_name_exclude_patterns = [&#10; ".*somePattern.*",&#10; "^AnotherPattern.*",&#10; ],&#10; ),&#10;)</code></pre> | `None` |
| <a id="xcschemes.autogeneration_config-test"></a>test | Options to use for the test action.<br><br>Example:<br><br>```starlark xcodeproj( ... scheme_autogeneration_config = xcschemes.autogeneration_config( test = xcschemes.autogeneration.test( options = xcschemes.test_options( app_language = "en", app_region = "US", code_coverage = False, ) ) ) ) | `None` |
| <a id="xcschemes.autogeneration_config-test"></a>test | Options to use for the test action.<br><br>Example:<br><br>```starlark xcodeproj( ... scheme_autogeneration_config = xcschemes.autogeneration_config( test = xcschemes.autogeneration.test( options = xcschemes.test_options( app_language = "en", app_region = "US", code_coverage = False, ) ) ) ``` ) | `None` |

**RETURNS**

Expand Down
1 change: 1 addition & 0 deletions xcodeproj/internal/xcschemes/xcschemes.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -1278,6 +1278,7 @@ def _autogeneration_config(*, scheme_name_exclude_patterns = None, test = None):
)
)
)
```
)
Returns:
Expand Down

0 comments on commit 205a377

Please sign in to comment.