Skip to main content

Qase Behave Plugin for Qase TestOps and Qase Report

Project description

Qase TestOps Behave Reporter

PyPI version PyPI downloads License

Qase Behave Reporter enables seamless integration between your Behave BDD tests and Qase TestOps, providing automatic test result reporting, test case management, and comprehensive test analytics.

Features

  • Link automated tests to Qase test cases by ID
  • Auto-create test cases from your feature files
  • Report test results with rich metadata (fields, attachments)
  • Automatic step reporting from Gherkin scenarios
  • Multi-project reporting support
  • Flexible configuration (file, environment variables)
  • BehaveX parallel execution support

Installation

pip install qase-behave

Quick Start

1. Create qase.config.json in your project root:

{
  "mode": "testops",
  "testops": {
    "project": "YOUR_PROJECT_CODE",
    "api": {
      "token": "YOUR_API_TOKEN"
    }
  }
}

2. Add Qase ID to your scenario:

Feature: Authentication

  @qase.id:1
  Scenario: User can log in with valid credentials
    Given I am on the login page
    When I enter valid credentials
    Then I should see the dashboard

3. Run your tests:

behave --format=qase.behave.formatter:QaseFormatter

Configuration

The reporter is configured via (in order of priority):

  1. Environment variables (QASE_*, highest priority)
  2. Config file (qase.config.json)

Minimal Configuration

Option Environment Variable Description
mode QASE_MODE Set to testops to enable reporting
testops.project QASE_TESTOPS_PROJECT Your Qase project code
testops.api.token QASE_TESTOPS_API_TOKEN Your Qase API token

Example qase.config.json

{
  "mode": "testops",
  "fallback": "report",
  "testops": {
    "project": "YOUR_PROJECT_CODE",
    "api": {
      "token": "YOUR_API_TOKEN"
    },
    "run": {
      "title": "Behave Automated Run"
    },
    "batch": {
      "size": 100
    }
  },
  "report": {
    "driver": "local",
    "connection": {
      "local": {
        "path": "./build/qase-report",
        "format": "json"
      }
    }
  }
}

Full configuration reference: See qase-python-commons for all available options including logging, status mapping, execution plans, and more.

Usage

Link Tests with Test Cases

Associate your scenarios with Qase test cases using the @qase.id tag:

Feature: Shopping Cart

  @qase.id:1
  Scenario: Add item to cart
    Given I am on the product page
    When I click add to cart
    Then the item should be in my cart

  @qase.id:2
  Scenario: Remove item from cart
    Given I have an item in my cart
    When I click remove
    Then my cart should be empty

Add Metadata

Enhance your scenarios with additional information using the @qase.fields tag:

Feature: Checkout

  @qase.id:1
  @qase.fields:{"severity":"critical","priority":"high","layer":"e2e"}
  @qase.suite:Checkout
  Scenario: Complete purchase
    Given I have items in my cart
    When I complete checkout
    Then I should see order confirmation

Note: In field values, use underscores (_) instead of spaces. They will be automatically converted.

Ignore Tests

Exclude specific scenarios from Qase reporting:

Feature: Authentication

  @qase.ignore
  Scenario: Work in progress test
    Given this test is not ready
    Then it should not be reported

Test Result Statuses

Behave Result Qase Status
Passed passed
Failed (AssertionError) failed
Failed (other exception) invalid
Skipped skipped

Attachments

Attach files and content to test results in step definitions:

from behave import given, when, then
from qase.behave import qase

@when('I take a screenshot')
def step_impl(context):
    screenshot = context.browser.get_screenshot_as_png()
    qase.attach(content=screenshot, file_name="screenshot.png", mime_type="image/png")

For detailed usage examples, see the Usage Guide.

Running Tests

Basic Execution

behave --format=qase.behave.formatter:QaseFormatter

With Environment Variables

export QASE_MODE=testops
export QASE_TESTOPS_PROJECT=PROJ
export QASE_TESTOPS_API_TOKEN=your_token
behave --format=qase.behave.formatter:QaseFormatter

With Custom Run Title

export QASE_TESTOPS_RUN_TITLE="Regression Run"
behave --format=qase.behave.formatter:QaseFormatter

Parallel Execution with BehaveX

Run tests in parallel using BehaveX (v4.0.0+):

pip install behavex

behavex --formatter=qase.behave.formatter:QaseFormatter --parallel-processes=4 features/

# Parallel by feature
behavex --formatter=qase.behave.formatter:QaseFormatter --parallel-processes=4 --parallel-scheme=feature features/

Configuration is done via environment variables or qase.config.json (the same as for standard behave).

Note: qase.attach() and qase.comment() are not supported in BehaveX mode. All other features (test case linking, metadata, steps, statuses) work normally.

Requirements

  • Python >= 3.9
  • behave >= 1.2.6
  • filelock >= 3.12.2
  • BehaveX >= 4.0.0 (optional, for parallel execution)

Documentation

Guide Description
Usage Guide Complete usage reference with all tags and options
Attachments Adding screenshots, logs, and files to test results
Multi-Project Support Reporting to multiple Qase projects

Examples

See the examples directory for complete working examples.

License

Apache License 2.0. See LICENSE for details.

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

qase_behave-3.2.2.tar.gz (27.0 kB view details)

Uploaded Source

Built Distribution

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

qase_behave-3.2.2-py3-none-any.whl (16.5 kB view details)

Uploaded Python 3

File details

Details for the file qase_behave-3.2.2.tar.gz.

File metadata

  • Download URL: qase_behave-3.2.2.tar.gz
  • Upload date:
  • Size: 27.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qase_behave-3.2.2.tar.gz
Algorithm Hash digest
SHA256 8f9b7030340cca3d55b95d5b3e8ad3c5d49a0693c5578630af642484394095b6
MD5 41e5a58377d129bc0a140433989ab618
BLAKE2b-256 b1c35551f58af5b6581c493490f96abb28ad6c5885ef3076dcae5ccc07e2a7ba

See more details on using hashes here.

File details

Details for the file qase_behave-3.2.2-py3-none-any.whl.

File metadata

  • Download URL: qase_behave-3.2.2-py3-none-any.whl
  • Upload date:
  • Size: 16.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qase_behave-3.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b6e1a7e8d8bfb45ed3b16ba22f4886a8bfa7c4d718c3855523ed7de05e7bb615
MD5 9c7c043637acef586c906b5c5ba1def5
BLAKE2b-256 d3007c57de234950fa7d6684538e1ea6af5b2f98f6b54f0c2cd02354bdda965d

See more details on using hashes here.

Supported by

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