-
-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for bugsnagReporting in gradle config. (#820)
- Loading branch information
1 parent
1f4905b
commit 0354fc9
Showing
10 changed files
with
223 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
107 changes: 107 additions & 0 deletions
107
configuration/src/test/resources/fixture/config/sample_1_no_tracking.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
analyticsTracking: false | ||
bugsnagReporting: false | ||
name: "sample-app tests" | ||
outputDir: "./marathon" | ||
analyticsConfiguration: | ||
type: "influxdb" | ||
url: "http://influx.svc.cluster.local:8086" | ||
user: "root" | ||
password: "root" | ||
dbName: "marathon" | ||
poolingStrategy: | ||
type: "combo" | ||
list: | ||
- type: "omni" | ||
- type: "device-model" | ||
- type: "os-version" | ||
- type: "manufacturer" | ||
- type: "abi" | ||
shardingStrategy: | ||
type: "count" | ||
count: 5 | ||
sortingStrategy: | ||
type: "success-rate" | ||
timeLimit: "2015-03-14T09:26:53.590Z" | ||
batchingStrategy: | ||
type: "fixed-size" | ||
size: 5 | ||
flakinessStrategy: | ||
type: "probability" | ||
minSuccessRate: 0.7 | ||
maxCount: 3 | ||
timeLimit: "2015-03-14T09:26:53.590Z" | ||
retryStrategy: | ||
type: "fixed-quota" | ||
totalAllowedRetryQuota: 100 | ||
retryPerTestQuota: 2 | ||
filteringConfiguration: | ||
allowlist: | ||
- type: "simple-class-name" | ||
regex: ".*" | ||
- type: "simple-class-name" | ||
values: | ||
- "SimpleTest" | ||
- type: "fully-qualified-class-name" | ||
file: "filterfile" | ||
- type: "fully-qualified-class-name" | ||
regex: ".*" | ||
- type: "method" | ||
regex: ".*" | ||
- type: "composition" | ||
filters: | ||
- type: "package" | ||
regex: ".*" | ||
- type: "method" | ||
regex: ".*" | ||
op: "UNION" | ||
blocklist: | ||
- type: "package" | ||
regex: ".*" | ||
- type: "annotation" | ||
regex: ".*" | ||
- type: "annotationData" | ||
nameRegex: ".*" | ||
valueRegex: ".*" | ||
testClassRegexes: | ||
- "^((?!Abstract).)*Test$" | ||
includeSerialRegexes: | ||
- "emulator-500[2,4]" | ||
excludeSerialRegexes: | ||
- "emulator-5002" | ||
ignoreFailures: false | ||
isCodeCoverageEnabled: false | ||
executionStrategy: | ||
mode: ANY_SUCCESS | ||
fast: true | ||
testBatchTimeoutMillis: 20000 | ||
testOutputTimeoutMillis: 30000 | ||
debug: true | ||
screenRecordingPolicy: "ON_ANY" | ||
deviceInitializationTimeoutMillis: 300000 | ||
vendorConfiguration: | ||
type: "Android" | ||
androidSdk: "/local/android" | ||
applicationApk: "kotlin-buildscript/build/outputs/apk/debug/kotlin-buildscript-debug.apk" | ||
testApplicationApk: "kotlin-buildscript/build/outputs/apk/androidTest/debug/kotlin-buildscript-debug-androidTest.apk" | ||
splitApks: | ||
- "kotlin-buildscript/build/outputs/apk/androidTest/debug/kotlin-buildscript-split-debug.apk" | ||
autoGrantPermission: true | ||
applicationPmClear: true | ||
testApplicationPmClear: true | ||
instrumentationArgs: | ||
debug: "false" | ||
installOptions: "-d" | ||
screenRecordConfiguration: | ||
preferableRecorderType: "screenshot" | ||
videoConfiguration: | ||
enabled: false | ||
width: 1080 | ||
height: 1920 | ||
bitrateMbps: 2 | ||
timeLimit: 300 | ||
screenshotConfiguration: | ||
enabled: false | ||
width: 1080 | ||
height: 1920 | ||
delayMs: 200 | ||
waitForDevicesTimeoutMillis: 15000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters