Skip to main content

TestRail API reporter tools

Project description

TestRail reporter

This is Testrail API reporter tools.

This package contains several tools to interact with TestRail via API.

General part is TestRailResultsReporter which is designed to report test results via api. This part is close to trcli, but without nasty bugs.

Firstly, you need to obtain test results in xml format. You can do it via running your testsuite, i.e. using pytest:

pytest --junitxml "junit-report.xml" "./tests"

Also you need to add custom field (string type) to TestRails with name "automation_id".

Now, you ready to upload results to TestRails. To it, use:

url=https://your_tr.testrail.io email=your@email.com password=your_password project_number=42 test_suite_number=66 api=TestRailResultsReporter(url, email, password, project_number, test_suite_number) # then just call: api.send_results() After this new testcases, test run and test results will be created. Testrun will have a name like "AT run 2022-09-01T20:25:51"

If you fill automation_id for existing testcases using correct format (path.to.testfile.filename.test_class.test_step), then in such case results will be added to existing testcases.

Also, you can customize test run by passing:

  • title param to send_results function - it will replace whole test run title.
  • environment - it will be added to end of string like "AT run 2022-09-01T20:25:51 on Dev"
  • timestamp - it will replace timestamp, obtained from XML file)
  • close_run - may be True (by default) or False - if True, then eery testrun will be closed.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

testrail_api_reporter-0.0.2.tar.gz (6.0 MB view hashes)

Uploaded Source

Built Distribution

testrail_api_reporter-0.0.2-py3-none-any.whl (3.4 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page