Skip to content

Commit f0b4bdf

Browse files
committed
update autogeneration_config docs
Signed-off-by: Lucas Romano <[email protected]>
1 parent 8d3e353 commit f0b4bdf

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/bazel.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ Creates a value for the [`scheme_autogeneration_config`](xcodeproj-scheme_autoge
280280
| Name | Description | Default Value |
281281
| :------------- | :------------- | :------------- |
282282
| <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` |
283-
| <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` |
283+
| <a id="xcschemes.autogeneration_config-test"></a>test | Options to use for the test action.<br><br>Example:<br><br><pre><code class="language-starlark">xcodeproj(&#10; ...&#10; scheme_autogeneration_config = xcschemes.autogeneration_config(&#10; test = xcschemes.autogeneration.test(&#10; options = xcschemes.test_options(&#10; app_language = "en",&#10; app_region = "US",&#10; code_coverage = False,&#10; )&#10; )&#10; )&#10;)</code></pre> | `None` |
284284

285285
**RETURNS**
286286

xcodeproj/internal/xcschemes/xcschemes.bzl

+1
Original file line numberDiff line numberDiff line change
@@ -1279,6 +1279,7 @@ def _autogeneration_config(*, scheme_name_exclude_patterns = None, test = None):
12791279
)
12801280
)
12811281
)
1282+
```
12821283
12831284
Returns:
12841285
An opaque value for the [`scheme_autogeneration_config`](xcodeproj-scheme_autogeneration_config) attribute of `xcodeproj`.

0 commit comments

Comments
 (0)