2019-07-26 15:08:01 +00:00
|
|
|
# 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
|
2019-09-27 15:57:57 +00:00
|
|
|
async: false
|
2019-07-26 15:08:01 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2019-09-27 15:57:57 +00:00
|
|
|
# The number of times a TestExecution should be re-attempted if one or more\nof its test cases fail for any reason.
|
|
|
|
# The maximum number of reruns allowed is 10. Default is 0, which implies no reruns.
|
2019-12-03 05:43:40 +00:00
|
|
|
num-flaky-test-attempts: 2
|
2019-09-27 15:57:57 +00:00
|
|
|
|
2019-07-26 15:08:01 +00:00
|
|
|
# test and app are the only required args
|
|
|
|
app: /app/path
|
|
|
|
test: /test/path
|
|
|
|
|
|
|
|
auto-google-login: true
|
|
|
|
use-orchestrator: true
|
|
|
|
environment-variables:
|
|
|
|
clearPackageData: true
|
|
|
|
directories-to-pull:
|
|
|
|
- /sdcard/screenshots
|
|
|
|
performance-metrics: true
|
|
|
|
|
2019-09-30 11:09:46 +00:00
|
|
|
test-targets:
|
|
|
|
- package org.mozilla.fenix.ui
|
|
|
|
|
2019-07-26 15:08:01 +00:00
|
|
|
device:
|
2019-09-27 15:57:57 +00:00
|
|
|
- model: Nexus6
|
2019-09-23 02:19:10 +00:00
|
|
|
version: 25
|
|
|
|
- model: Pixel2
|
|
|
|
version: 28
|
2019-07-26 15:08:01 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
max-test-shards: -1
|
2019-12-03 05:43:40 +00:00
|
|
|
# num-test-runs: the amount of times to run the tests.
|
2019-07-26 15:08:01 +00:00
|
|
|
# 1 runs the tests once. 10 runs all the tests 10x
|
2019-12-03 05:43:40 +00:00
|
|
|
num-test-runs: 1
|
2019-09-23 02:19:10 +00:00
|
|
|
|