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

docs: Add description for xcuitest saucectl option "shard: testList" #3041

Merged
merged 4 commits into from
Dec 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1327,12 +1327,18 @@

<p><small>| OPTIONAL | STRING |</small></p>

When shard is configured as `concurrency`, saucectl automatically splits the tests into several groups (the number of groups is determined by the concurrency setting). Each group will then run as an individual job.
Configures saucectl to automatically split the tests of a suite to more easily

Check warning on line 1330 in docs/mobile-apps/automated-testing/espresso-xcuitest/xcuitest.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/mobile-apps/automated-testing/espresso-xcuitest/xcuitest.md#L1330

[sauce.Simplicity] Remove 'easily'. Be precise instead of subjective.
Raw output
{"message": "[sauce.Simplicity] Remove 'easily'. Be precise instead of subjective.", "location": {"path": "docs/mobile-apps/automated-testing/espresso-xcuitest/xcuitest.md", "range": {"start": {"line": 1330, "column": 73}}}, "severity": "WARNING"}
run in parallel. Valid values are `concurrency` and `testList`.

Selectable values: `concurrency` to shard by concurrency. Remove this field or leave it empty `""` for no sharding.
In `concurrency` mode, saucectl automatically splits the
tests into several groups (the number of groups is determined by the
concurrency setting). Each group will then run as an individual job.

In `testList` mode, saucectl will use the provided [testListFile](#testlistfile)
and run each entry defined there in parallel.

:::note
When shard is set for a suite, the [class](#class) setting is automatically ignored.
When sharding is enabled, the [class](#class) setting is automatically ignored.
:::

```yaml
Expand Down
Loading