You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Attributes for updating Test Optimization service settings.
102995
103015
All non-required fields are optional; only provided fields will be updated.
103016
+
Setting a field to `null` is a no-op. To reset a setting to inherit from the repository level, use the corresponding `<setting>_inherit` field.
102996
103017
properties:
102997
103018
auto_test_retries_enabled:
102998
-
description: Whether Auto Test Retries are enabled for this service.
103019
+
description: Whether Auto Test Retries are enabled for this service. Setting to `null` is a no-op; use `auto_test_retries_enabled_inherit` to reset to repository-level inheritance.
103020
+
example: false
103021
+
type: boolean
103022
+
auto_test_retries_enabled_inherit:
103023
+
description: When `true`, resets the Auto Test Retries setting to inherit from the repository level.
102999
103024
example: false
103000
103025
type: boolean
103001
103026
code_coverage_enabled:
103002
-
description: Whether Code Coverage is enabled for this service.
103027
+
description: Whether Code Coverage is enabled for this service. Setting to `null` is a no-op; use `code_coverage_enabled_inherit` to reset to repository-level inheritance.
103028
+
example: false
103029
+
type: boolean
103030
+
code_coverage_enabled_inherit:
103031
+
description: When `true`, resets the Code Coverage setting to inherit from the repository level.
103003
103032
example: false
103004
103033
type: boolean
103005
103034
early_flake_detection_enabled:
103006
-
description: Whether Early Flake Detection is enabled for this service.
103035
+
description: Whether Early Flake Detection is enabled for this service. Setting to `null` is a no-op; use `early_flake_detection_enabled_inherit` to reset to repository-level inheritance.
103036
+
example: false
103037
+
type: boolean
103038
+
early_flake_detection_enabled_inherit:
103039
+
description: When `true`, resets the Early Flake Detection setting to inherit from the repository level.
103007
103040
example: false
103008
103041
type: boolean
103009
103042
env:
103010
103043
description: The environment name. If omitted, defaults to `none`.
103011
103044
example: prod
103012
103045
type: string
103013
103046
failed_test_replay_enabled:
103014
-
description: Whether Failed Test Replay is enabled for this service.
103047
+
description: Whether Failed Test Replay is enabled for this service. Setting to `null` is a no-op; use `failed_test_replay_enabled_inherit` to reset to repository-level inheritance.
103048
+
example: false
103049
+
type: boolean
103050
+
failed_test_replay_enabled_inherit:
103051
+
description: When `true`, resets the Failed Test Replay setting to inherit from the repository level.
103015
103052
example: false
103016
103053
type: boolean
103017
103054
pr_comments_enabled:
103018
-
description: Whether PR Comments are enabled for this service.
103019
-
example: true
103055
+
description: This field is ignored. PR Comments cannot be overridden at the service level.
103056
+
example: false
103020
103057
type: boolean
103021
103058
repository_id:
103022
103059
description: The repository identifier.
@@ -103029,8 +103066,12 @@ components:
103029
103066
minLength: 1
103030
103067
type: string
103031
103068
test_impact_analysis_enabled:
103032
-
description: Whether Test Impact Analysis is enabled for this service.
103033
-
example: false
103069
+
description: Whether Test Impact Analysis is enabled for this service. Setting to `null` is a no-op; use `test_impact_analysis_enabled_inherit` to reset to repository-level inheritance.
103070
+
example: true
103071
+
type: boolean
103072
+
test_impact_analysis_enabled_inherit:
103073
+
description: When `true`, resets the Test Impact Analysis setting to inherit from the repository level.
103074
+
example: true
103034
103075
type: boolean
103035
103076
required:
103036
103077
- repository_id
@@ -121112,7 +121153,9 @@ paths:
121112
121153
patch:
121113
121154
description: |-
121114
121155
Partially update Test Optimization settings for a specific service identified by repository, service name, and environment.
121115
-
Only provided fields are updated; null or omitted fields are left unchanged.
121156
+
Only provided fields are updated; setting a field to `null` is a no-op.
121157
+
To reset a setting to inherit from the repository level, use the corresponding `<setting>_inherit` field.
121158
+
The `pr_comments_enabled` field is ignored as it cannot be overridden at the service level.
0 commit comments