Last active
March 7, 2020 13:45
-
-
Save abdyer/232ec78ee0f640bf9d332ba80a3d30bd to your computer and use it in GitHub Desktop.
Configuring the benchmark test task with Fladle
This file contains hidden or 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
fladle { | |
// credentials and other general config... | |
configs { | |
benchmarkTests { | |
resultsHistoryName = "benchmark-tests-${getDateString()}" | |
directoriesToPull = [ | |
"/sdcard/Download" | |
] | |
filesToDownload = [ ".*/sdcard/Download/.*" ] | |
smartFlankGcsPath = | |
"gs://api-project-1234567890.appspot.com/flank/reports/benchmark.xml" | |
testTargets = [ | |
"annotation org.andydyer.example.BenchmarkTest" | |
] | |
devices = [ | |
[ "model": "walleye", "version": "28", "locale": "en"] | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment