975
edits
| Line 6: | Line 6: | ||
{ | { | ||
'stat':'ok', | 'stat':'ok', | ||
' | 'test': [ | ||
{ | { | ||
'id':123, | 'id':123, | ||
| Line 35: | Line 35: | ||
} | } | ||
* '''/api/ | * '''/api/test/''testId''/runs/''' - returns test runs for a specific testId, default date limit is 4 weeks, sorted by date descending | ||
** Example response: | ** Example response: | ||
{ | { | ||
| Line 70: | Line 70: | ||
] | ] | ||
} | } | ||
* '''/api/ | * '''/api/testrun/''testRunId''''' - returns test run information for a specific testRunId | ||
** Example response | |||
{ | |||
'stat':'ok', | |||
'testrun': { | |||
'id':98, | |||
'build': { | |||
'id':23, | |||
'build_id':'2007072704', | |||
'changeset':'572a00c0e251', | |||
'os':'Vista', | |||
}, | |||
'date_run':1208830929, | |||
'average':92.4, | |||
'annotations': [ | |||
{ | |||
'note':'Something happened here', | |||
'bug_id':988740 | |||
} | |||
] | |||
} | |||
} | |||
* '''/api/testrun/''testRunId''/values''' - returns test run results for a specific testRunId | |||
** Example response | ** Example response | ||
{ | { | ||
edits