From the course: Scripting for Testers

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Analyze test data

Analyze test data - Python Tutorial

From the course: Scripting for Testers

Start my 1-month free trial

Analyze test data

- [Instructor] In this video we're going to expand a bit more on some of the concepts that we've learned in the last few videos. What I will do here is work through an example showing how I would go about creating a pie chart of some defect data. Although this is not a challenge but rather a worked example, it would probably be beneficial for you to try and follow along. Pause the video if you need to and see if you can do some of this on your own first. So, the first thing that we need to do is to get the defect data from out bug tracking system. Most systems will have an API you could use. For this video we'll use some Jira data. Getting the data out of Jira is pretty easy with our REST API skills that we've learned earlier in this course. We just import requests and then we get the URL that we're interested in, so we'll call that URL and for Jira that would just be HTTP colon slash Jira dot company name and then we have slash rest slash API slash latest search JQL which is Jira…

Contents