action appcenter_test_get_test_runs { label: "test_getTestRuns" description: "Returns a list of test runs" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/test_runs" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "Summary single test run on Xamarin Test Cloud" properties: { appVersion: { type: "string" description: "The compiled version of the app binary" } date: { type: "string" description: "The date and time the test was uploaded" } description: { type: "string" description: "Human readable explanation of the current test status" } id: { type: "string" format: "uuid" description: "The unique id of the test upload" } platform: { type: "string" description: "The device platform targeted by the test. Possible values are 'ios' or 'android'" } resultStatus: { type: "string" description: "The passed/failed state" } runStatus: { type: "string" description: "The current status of the test run, in relation to the various phases" } state: { type: "string" description: "Deprecated. Use runStatus instead." } stats: { type: "object" description: "Summary single test run on Xamarin Test Cloud" properties: { devices: { type: "number" description: "Number of devices running the test" } devicesFailed: { type: "number" description: "Number of failed devices" } devicesFinished: { type: "number" description: "Number of finished devices" } failed: { type: "number" description: "Number of failed tests" } passed: { type: "number" description: "Number of passed tests" } peakMemory: { type: "number" description: "The max amount of MB used during the test run" } skipped: { type: "number" description: "Number of skipped tests" } total: { type: "number" description: "Number of tests in total" } totalDeviceMinutes: { type: "number" description: "The number of minutes of device time the test has been runnign" } } } status: { type: "string" description: "Deprecated. Use resultStatus instead." } testSeries: { type: "string" description: "The name of the test series with which this test upload is associated" } testType: { type: "string" description: "The name of the test framework used to run this test" } } } } }