Skip to main content

Create and update testplans and/or testruns in TestRail based on pytest results. Test functions marked with a TestRail case ID will have their results sent to TestRail.

This project preserves the functionality of the deprecated pytest-testrail project.

PyPI PyPI - Python Version GitHub Build status

Key features:

  • Configurable: Handle results in whichever way makes sense for your project.

  • Powerful: Handle complex use cases via a simple interface to the TestRail API.

  • Flexible: Fully compatible with pytest.parametrize(), pytest-xdist, and pytest-rerunfailures.

Example

import pytest

@pytest.mark.case_id('C1950')
def test_all_the_things():
  doit = True
  assert doit

Getting Started

Installation

Via pip:

pip install pytest-testrail2

Plugin Configuration

The following values are required:

  • A valid TestRail instance URL.

  • A valid email address for a user on the instance.

  • A valid API key for the user.

They can be set on the command line via the follow flags:

--tr-url=<your_url>
--tr-email=<your_email>
--tr-password=<your_password>

Alternatively, they can be set via a pytest configuration file:

[pytest]
  tr_url=<your_url>
  tr_email=<your_email>
  tr_password=<your_password>

Marking Tests

case_id

The case_id marker takes a string which must match an existing TestRail testcase. Only tests with this marker will be added to the TestRail testrun.

import pytest

# This test's results will be uploaded.
@pytest.mark.case_id('C1950')
def test_all_the_things():
  ...


# This test's results will not be uploaded.
def test_all_the_other_things():
  ...

defect_ids

The ‘defect_ids’ marker takes a list of strings. These will be used in the defect field in TestRail. This is useful for tests with known failures.

Typically these are IDs for your bug tracking software.

import pytest

@pytest.mark.case_id('C1950')
@pytest.mark.defect_ids(['JS-7001', 'JS-9001'])
def test_all_the_things():
  ...

Running Pytest

The –testrail command-line flag must be present to upload results:

pytest --testrail

Options

Setup

  • --testrail Activate the TestRail plugin.

  • --tr-url Web address used to access a TestRail instance.

  • --tr-email E-mail address for an account on the TestRail instance.

  • --tr-password Password for an account on the TestRail instance.

  • --tr-timeout Timeout for connecting to a TestRail server.

  • --tr-no-ssl-cert-check Do not check for valid SSL certificate on TestRail host.

Testrun

  • --tr-run-id ID of an existing testrun in TestRail. If specified, the testrun matching the ID will be used instead of creating a new testrun. If given, --tr-testrun-name will be ignored.

  • --tr-testrun-name Name used for a new testrun in TestRail.

  • --tr-testrun-description Description used for a new testrun in TestRail.

  • --tr-testrun-assignedto-id ID of the user to be assigned to the testrun.

  • --tr-testrun-project-id ID of the project the testrun will be created in.

  • --tr-testrun-suite-id ID of the suite the testrun will be created in.

  • --tr-testrun-suite-include-all Include all test cases in the specified testsuite for a new testrun.

  • --tr-milestone-id ID of milestone used in testrun creation.

  • --tr-skip-missing Skip pytest test functions with marks that are not present in a specified testrun.

Testplan

  • --tr-plan-id ID of an existing testplan to use. If given, --tr-testrun-name will be ignored.

Publishing

  • --tr-version Specify a version in testcase results.

  • --tr-close-on-complete On pytest completion, close the testrun.

  • --tr-dont-publish-blocked Do not publish results of “blocked” testcases (in TestRail).

  • --tr-custom-comment Custom text appended to comment for all testcase results.

Download files

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

Source Distribution

pytest-testrail2-1.0.1.tar.gz (15.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytest_testrail2-1.0.1-py3-none-any.whl (16.9 kB view details)

Uploaded Python 3

File details

Details for the file pytest-testrail2-1.0.1.tar.gz.

File metadata

  • Download URL: pytest-testrail2-1.0.1.tar.gz
  • Upload date:
  • Size: 15.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for pytest-testrail2-1.0.1.tar.gz
Algorithm Hash digest
SHA256 47e59796039f5e719ccf1d867bc645bd918f9d92e993728ba1dcdb859e124917
MD5 1e5c06b15a4301784a28c7c85e7cc369
BLAKE2b-256 256d13c4503e7ec912c81f5f4df980f11725be7ef02f87de6a94a8bdb52c59a3

See more details on using hashes here.

File details

Details for the file pytest_testrail2-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_testrail2-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b34d5741969fa37bc34758e1fa69abaa558d098a467234c61dda618de5474422
MD5 a8ab819e4af2819832d9f8746daf05d8
BLAKE2b-256 76799e060e96ee0f2faca51d35f9c7010f3eaf3e2525c14aedf43bf8d700c55c

See more details on using hashes here.

Release history Release notifications | RSS feed

1.1.0

2 files

1.0.2

2 files

This release

1.0.1 This release

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page