123ArticleOnline Logo
Welcome to 123ArticleOnline.com!
ALL >> General >> View Article

How To Integrate Testrail With Pytest?

Profile Picture
By Author: Fleek IT Solutions
Total Articles: 45
Comment this article
Facebook ShareTwitter ShareGoogle+ ShareTwitter Share

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

Total Views: 254Word Count: 581See All articles From Author

Add Comment

General Articles

1. Marcitors’ Social-listening Ultimate-guide: Strategies To Win In 2025
Author: digitalsuccess40

2. Western Blot Imagers Market Size To Reach Usd 599 Million By 2031 | Growth Insights & Forecast
Author: siddhesh

3. Agrigenomics Market Size To Reach Usd 7.92 Billion By 2031 | Growth Insights & Forecast
Author: siddhesh

4. Ai Agent Development Solutions For Autonomous Digital Ecosystems
Author: david

5. Islamic Bio For Instagram Se Jude Sawal Jawab (faq)
Author: Banjit Das

6. Tokfame Vous Aide à Obtenir Une Croissance Claire, Simple Et Constante
Author: Tokfame

7. Best Free Fire Bio Ideas For Boys & Girls – Attitude, Royal, Sad & Love Bios Explained
Author: Banjit Das

8. The Sacred Ebony Wood Mala For Spiritual Strength, Protection & Mental Clarity
Author: Abhijeet

9. Discover The True Power Of Karungali Mala Original
Author: Abhijeet

10. The Power Of Karungali Mala Original
Author: Abhijeet

11. The Ancient Ebony Wood Mala For Protection, Stability & Spiritual Growth
Author: Abhijeet

12. What Is The Future Of The Mini C-arm Market? Growth Forecasts & Clinical Insights
Author: siddhesh

13. Extract Api For Asda Grocery Product Details Data In Uk
Author: Food Data Scraper

14. Tubular External Fixation System Market Size To Reach Usd 8.09 Billion By 2031 | Orthopedic Growth Outlook
Author: siddhesh

15. Common Blockchain App Development Mistakes And How To Avoid Them
Author: claraathena

Login To Account
Login Email:
Password:
Forgot Password?
New User?
Sign Up Newsletter
Email Address: