Giter Site home page Giter Site logo

behave-testrail-reporter's Introduction

Behave to TestRail Reporter

CircleCI Codacy Badge Codacy Badge

This integration is used to add test results to TestRail automatically when Behave tests are executed.

Example of the generated report:

3 testrail test cases passed, 0 failed, 19 skipped, 2 untested
Took 0m6.349s

Install

Can install it using pipenv

$ pipenv install behave-testrail-reporter

or using pip

$ pip install behave-testrail-reporter

Setup

Add TestrailReporter to behave reporters in your /features/environment.py by adding this code in before_all()

from behave_testrail_reporter import TestrailReporter

def before_all(context):
    # ... all your other awesome code in here
    current_branch = os.environ.get('CIRCLE_BRANCH') # Change this to get the current build branch of your CI system
    testrail_reporter = TestrailReporter(current_branch)
    context.config.reporters.append(testrail_reporter)

Create a testrail.yml config file in the root of your project

Example structure:

projects:
  -
    name: 'Test run {branch}'
    id: 123
    suite_id: 456
    allowed_branch_pattern: '^(master|release\/\d+([\.\d]+)?)$'
yaml key Description
name Project name
id Testrail project id
suite_id Testrail Suite id
allowed_branch_pattern Regular expression to restrict when a test run is executed

name - You can use some project variables to create dynamic test run names

Variable Example Result
{project_id} 'Test run {project_id}' Test run 123
{suite_id} 'Test run {suite_id}' Test run 456
{branch} 'Test run {branch}' Test run master

Environment variables required

Variable name Description
TESTRAIL_KEY TestRail user password
TESTRAIL_USER TestRail user email address

How to use

To get test cases marked as success or fail on TestRail we have to add tags with TestRail test case ID on each scenario.

Test case tag structure:

prefix + test case id

@testrail- + C1104

See example below:

Feature: Log in and out

    Background:
        Given I am logged out from Hub
        And I navigate to the home page

    @testrail-C1104
    @testrail-C45933
    Scenario: Admin can login
        When I enter the username admin
        And I enter the password admin
        And I click the Login button
        Then I see the admin's landing page

Note: some scenarios can cover multiple TestRail cases, for that you just need to add multiple tags.

How to run tests

tox

How to distribute

If you need to publish a new version of this package you can use this command:

python setup.py sdist bdist_wheel
twine upload dist/*

License

Licensed under MIT license. View license.

behave-testrail-reporter's People

Contributors

bernardosilva avatar dependabot-support avatar dependabot[bot] avatar veryhappythings avatar

Watchers

 avatar

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.