@@ -80,6 +80,20 @@ gcloud:
80
80
# # Invoke a test asynchronously without waiting for test results.
81
81
# async: false
82
82
83
+ # # A key-value map of additional details to attach to the test matrix.
84
+ # # Arbitrary key-value pairs may be attached to a test matrix to provide additional context about the tests being run.
85
+ # # When consuming the test results, such as in Cloud Functions or a CI system,
86
+ # # these details can add additional context such as a link to the corresponding pull request.
87
+ # client-details
88
+ # key1: value1
89
+ # key2: value2
90
+
91
+ # # The name of the network traffic profile, for example LTE, HSPA, etc,
92
+ # # which consists of a set of parameters to emulate network conditions when running the test
93
+ # # (default: no network shaping; see available profiles listed by the `flank test network-profiles list` command).
94
+ # # This feature only works on physical devices.
95
+ # network-profile: LTE
96
+
83
97
# # The history name for your test results (an arbitrary string label; default: the application's label from the APK manifest).
84
98
# # All tests which use the same history name will have their results grouped together in the Firebase console in a time-ordered test history list.
85
99
# results-history-name: android-history
@@ -94,14 +108,14 @@ gcloud:
94
108
# # The path to the test package (a zip file containing the iOS app and XCTest files).
95
109
# # The given path may be in the local filesystem or in Google Cloud Storage using a URL beginning with gs://.
96
110
# # Note: any .xctestrun file in this zip file will be ignored if --xctestrun-file is specified.
97
- test : ./src/test/kotlin/ftl/fixtures/tmp/EarlGreyExample .zip
111
+ test : ./src/test/kotlin/ftl/fixtures/tmp/earlgrey_example .zip
98
112
99
113
# # The path to an .xctestrun file that will override any .xctestrun file contained in the --test package.
100
114
# # Because the .xctestrun file contains environment variables along with test methods to run and/or ignore,
101
115
# # this can be useful for customizing or sharding test suites. The given path should be in the local filesystem.
102
116
# # Note: this path should usually be pointing to the xctestrun file within the derived data folder
103
117
# # For example ./derivedDataPath/Build/Products/EarlGreyExampleSwiftTests_iphoneos13.4-arm64e.xctestrun
104
- xctestrun-file : ./src/test/kotlin/ftl/fixtures/tmp/EarlGreyExampleSwiftTests_iphoneos12.1 -arm64e.xctestrun
118
+ xctestrun-file : ./src/test/kotlin/ftl/fixtures/tmp/EarlGreyExampleSwiftTests_iphoneos13.4 -arm64e.xctestrun
105
119
106
120
# # The version of Xcode that should be used to run an XCTest.
107
121
# # Defaults to the latest Xcode version supported in Firebase Test Lab.
@@ -134,7 +148,7 @@ flank:
134
148
# # default: -1 (unlimited)
135
149
# shard-time: -1
136
150
137
- # # repeat tests - the amount of times to run the tests.
151
+ # # test runs - the amount of times to run the tests.
138
152
# # 1 runs the tests once. 10 runs all the tests 10x
139
153
# num-test-runs: 1
140
154
@@ -169,8 +183,11 @@ flank:
169
183
# # Local folder to store the test result. Folder is DELETED before each run to ensure only artifacts from the new run are saved.
170
184
# local-result-dir: flank
171
185
186
+ # # The max time this test run can execute before it is cancelled (default: unlimited).
187
+ # run-timeout: 60m
188
+
172
189
# # Keeps the full path of downloaded files. Required when file names are not unique.
173
- # # Default: false
190
+ # # Default: false
174
191
# keep-file-path: false
175
192
176
193
# # The max time this test run can execute before it is cancelled (default: unlimited).
@@ -343,7 +360,7 @@ flank:
343
360
# # default: -1 (unlimited)
344
361
# shard-time: -1
345
362
346
- # # The amount of times to run the tests.
363
+ # # test runs - the amount of times to run the tests.
347
364
# # 1 runs the tests once. 10 runs all the tests 10x
348
365
# num-test-runs: 1
349
366
@@ -373,7 +390,7 @@ flank:
373
390
# local-result-dir: flank
374
391
375
392
# # Keeps the full path of downloaded files. Required when file names are not unique.
376
- # # Default: false
393
+ # # Default: false
377
394
# keep-file-path: false
378
395
379
396
# # Include additional app/test apk pairs in the run. Apks are unique by just filename and not by path!
0 commit comments