ALL >> General >> View Article
How To Integrate Testrail With Pytest?
What is Pytest?
Pytest is one of the famous test automation framework which comes inbuilt with python. You can use this framework to automate API and Functional testing of desktop and web applications.
What is TestRail?
TestRail is a Test Management tool. In this tool you can create Test Plans, Test Runs, Test Cases and customize fields of test cases as per your project need. This tools is used at all levels of testing from Project Manager to Software Testing Engineer.
Why Integration is Needed
When we run automated tests of Smoke or Regression test cases, we have to update the results of each test case in the Test Management tool. In Test Management tools we can generate metrics based on results of each test case result and present to Test Leaders for analysis.
TestRail provides API for integration, you can refer documentation on this link Click Here
Let’s assume we have 100 Test Cases which are required to run under Smoke/Regression Test. The below steps need to be performed including Authentication, Creation of Test Run (New Test Case ID created for test cases included in ...
... Test Run), Update test cases inside test run based on results by automation scripts.
Sample Code for Authentication
client = APIClient('URL')
client.user = 'UserID'
client.password = 'Password'
Sample Code to Create Test Run and Assign new Test Case ID
def createTestRun(self, test_ids=[], name="Test Run Name"):
response = client.send_post(
'add_run/1',
{'suite_id': 1,
'name': name,
'include_all': False,
'case_ids': test_ids
}
)
global run_id
run_id = str(response["id"])
Sample Code to Update test Cases
def updateTestCase(self, testCaseId, result):
global run_id
if result == "pass":
status = 1
elif result == "fail":
status = 5
# else:
# self.log.failed("Unknows Status ID for TestRail test update. Please use 'pass' or 'fail' for the tests.")
print(testCaseId)
print(run_id)
response = client.send_post(
'add_result_for_case/' + run_id + '/' + testCaseId,
{
'status_id': status,
'comment': 'Test Executed - Status updated from Automated Smoke Test Suite'
}
Tags: API automation using python, automation testing, Automation Testing company, Automation Testing Services, Functional automation, Independent software testing company, independent software testing services, pytest, software testing services, testrail
Add Comment
General Articles
1. Improve Revenue With Expert Endovascular Medical Billing ServicesAuthor: Brain
2. Kaal Sarp Dosh Puja In Trimbakeshwar: Step-by-step Ritual Guide
Author: Pandit Surya Prakash Guruji
3. How A Jee Main Online Mock Test Can Improve Your Preparation
Author: Sarthaks eConnect
4. What Is Gallbladder Surgery And When Do You Need It?
Author: Ravina
5. Zardozi, Aari & Threadwork: The Complete 2026 Hand Embroidery Guide For Fashion Brands
Author: Sandeep
6. Aaism Certification: Your Complete Guide To Training, Exam Cost, And Career Benefits In 2026
Author: Passyourcert
7. Transform Your Business With Bloom Agency: Website Development, Digital Marketing & Menu Card Design
Author: bloom agency
8. Why Choosing Independent Wood Burning Stove Installers Near Me Ensures Quality Workmanship And Long-term Peace Of Mind
Author: John Burdis
9. Why Is Dubbing For Animation Harder Than Live-action?
Author: Pratham Singh
10. Air Cooler Body Price: Factors That Influence Cost And How To Choose The Right One
Author: Nitin Bhandari
11. Sat Chandi Path And Navchandi Yagna In Trimbakeshwar: Benefits, Cost And Puja Guide
Author: Pandit Narayan Shastri
12. Live-in Care Vs Domiciliary Care: Which Home Care Option Is Right For Your Loved One?
Author: Jean-Marie
13. Interior Car Cleaning: What Is Car Interior Cleaning And Is Interior Car Detailing Worth It?
Author: Aquatint Detailing
14. Industrial Metal And Steel Scrap Recycling Infrastructure
Author: Shri Sabhari
15. Buy Premium Kitchen Chimneys Online | Auto Clean & Filterless | Kaff
Author: KAFF






