Git Product home page Git Product logo

pytest-testrail2's Introduction

pytest-testrail2

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.

pytest-testrail2's People

Contributors

jsfehler avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

pytest-testrail2's Issues

Sorting doesn't work with Xdist and parametrized tests

Sorting the parametrized tests based on their 'Pass/Fail' status doesn't work as expected.

For example in the test like:
@pytest.mark.parametrize("a", list(range(1, 100)))
def test_foo(a):
assert a % 5 != 0

If I run it with the pytest -k test_foo -n 4
Expected result: the parametrized tests are sorted - failed test first, then passed one
Actual result: the parametrized tests are not sorted as expected

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.