Search code examples
jiraintegrationaws-device-farm

Integrating AWS device farm with Jira?


I want to integrate my Jira with AWS device farm. Means Jira ticket should be created if the test cases are failed and also capture which test case is failed for device.

Is this possible?


Solution

  • Yes, that should be possible with the Jira API and the Device Farm API.

    There would need to be a script that pulls the results from the runs. Depending on the environment used you can use the result of the get-run API and the result attribute to determine if a run failed or not.

    Then based on that, call the Jira API to create the new issue.

    Hth James