mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-03 23:15:31 +00:00
67 lines
2.5 KiB
YAML
67 lines
2.5 KiB
YAML
# gcloud args match the official gcloud cli
|
|
# https://cloud.google.com/sdk/gcloud/reference/firebase/test/android/run
|
|
gcloud:
|
|
results-bucket: fenix_test_artifacts
|
|
record-video: true
|
|
|
|
# The maximum possible testing time is 30m on physical devices and 60m on virtual devices.
|
|
timeout: 30m
|
|
# will start test then close socket. no reports will be generated.
|
|
# to retrieve results later, use the "refresh" command
|
|
# reports will be generated from /results/matrix_ids.json
|
|
#async: true
|
|
# will start test then leave socket open. reports will be published
|
|
# to /results
|
|
# see: https://github.com/TestArmada/flank/issues/339
|
|
async: false
|
|
|
|
# results-history-name
|
|
# by default, set to app name
|
|
# declare results-history-name to create a separate dropdown menu in Firebase
|
|
# see: https://github.com/TestArmada/flank/issues/341
|
|
#results-history-name: tmp_parallel
|
|
|
|
# The number of times a test execution should be re-attempted if one or more failures occur.
|
|
# The maximum number of reruns allowed is 10. Default is 0, which implies no reruns.
|
|
num-flaky-test-attempts: 1
|
|
|
|
# test and app are the only required args
|
|
app: /app/path
|
|
test: /test/path
|
|
|
|
auto-google-login: false
|
|
use-orchestrator: true
|
|
environment-variables:
|
|
clearPackageData: true
|
|
directories-to-pull:
|
|
- /sdcard/screenshots
|
|
performance-metrics: true
|
|
|
|
test-targets:
|
|
- notPackage org.mozilla.fenix.screenshots
|
|
- notPackage org.mozilla.fenix.syncintegration
|
|
|
|
device:
|
|
- model: Pixel2
|
|
version: 30
|
|
locale: en_US
|
|
|
|
flank:
|
|
project: GOOGLE_PROJECT
|
|
# test shards - the amount of groups to split the test suite into
|
|
# set to -1 to use one shard per test. default: 1
|
|
max-test-shards: -1
|
|
# num-test-runs: the amount of times to run the tests.
|
|
# 1 runs the tests once. 10 runs all the tests 10x
|
|
num-test-runs: 1
|
|
### Output Style flag
|
|
## Output style of execution status. May be one of [verbose, multi, single, compact].
|
|
## For runs with only one test execution the default value is 'verbose', in other cases
|
|
## 'multi' is used as the default. The output style 'multi' is not displayed correctly on consoles
|
|
## which don't support ansi codes, to avoid corrupted output use single or verbose.
|
|
## The output style `compact` is used to produce less detailed output, it prints just Args, test and matrix count, weblinks, cost, and result reports.
|
|
output-style: compact
|
|
### Full Junit Result flag
|
|
## Enable create additional local junit result on local storage with failure nodes on passed flaky tests.
|
|
full-junit-result: true
|