Skip to main content

A plugin that allows users to create and use custom outputs instead of the standard Pass and Fail

Project description

Enhance Your Pytest Reporting with Customizable Test Outputs

Tired of the standard pass/fail binary in pytest? With pytest-custom_outputs, you can create expressive and informative custom test results that go beyond the ordinary. Tailor your reports to provide deeper insights into your test scenarios.

Useful for if you want more than just the default Pass, Fail, and Skip outcomes.

Features

  • Flexible Output Types: Define new outcome types like "unimplemented", "soft_fail"," "inconclusive," or any custom label that suits your testing needs.
  • Fully Customizeable: Custom outputs are customizable in their name, description, result code, tag, and color.
  • Seamless Integration: Easily incorporate custom outputs into your existing pytest test suites.
  • Terminal and File Reporting: View your custom outputs in both your terminal output and pytest file reports.

Installation

pip install pytest-custom_outputs

Usage

In the directory where you will be running your pytest, create a file called "pytest_custom_outputs.json". You will use this file to create your own custom outputs. Feel free to copy and paste the below json file into yours and edit from there.

EXAMPLE FILE:

{
        "unknown": {
                "desc":"unknown",
                "code":"?",
                "tag":"UNKNOWN",
                "color":"purple"
        },
        "custom_outputs": {
                "Pass_with_exception": {
                        "desc":"passed_with_exception",
                        "code":"P",
                        "tag":"XPASSED",
                        "color":"green"
                },
                "Fatal_failed": {
                        "desc":"fatal_failed",
                        "code":"!",
                        "tag":"FAILED",
                        "color":"red"
                },
                "Not_available": {
                        "desc":"not_available",
                        "code":"N",
                        "tag":"NOT_AVAILABLE",
                        "color":"blue"
                },
                "Failed_but_proceed": {
                        "desc":"failed_but_proceed",
                        "code":"X",
                        "tag":"FAILED_BUT_PROCEED",
                        "color":"red"
                },
                "Unimplemented": {
                        "desc":"unimplemented",
                        "code":"U",
                        "tag":"UNIMPLEMENTED",
                        "color":"yellow"
                },
                "Skipped": {
                        "desc":"skipped",
                        "code":"S",
                        "tag":"SKIPPED",
                        "color":"yellow"
                }
        }
}

unknown

  • The output to use if a test's result is not in custom outputs when calling c_assert

custom_outputs

  • A dictionary with all the custom outputs you write inside of it. You can edit, delete, and add new outputs here.

Each custom output is denoted by a name. The name is also the key for that output For example, in the above example file, "Pass_with_exception" and "Fatal_failed" are the names for their respective output. Names are also how we determine the result of a test case. We use the c_assert function and enter the name as an argument to assert that specific output.

For example:

import pytest
from pytest_custom_outputs import c_assert

def test_1():
    c_assert("Pass_with_exception")

In the example above, test_1 will result in "passed_with_exception".

If we put a name that is not in our custom output in the c_assert parameter, then it will assert the unknown outcome

The rest of the information in the json file can be edited and customized to your liking.

Why pytest-custom_outputs?

  • Improved Communication: Get more informative insights from your test runs
  • Focus on Key Areas: Prioritize test cases that require attention
  • Tailored for Your Needs: Adapt outcomes and messages to your project's specific requirements

Contributing

Contributions are very welcome. Tests can be run with tox_, please ensure the coverage at least stays the same before you submit a pull request.

License

Distributed under the terms of the BSD-3_ license, "pytest-custom_outputs" is free and open source software

Issues

If you encounter any problems, please file an issue_ along with a detailed description.

.. _file an issue: https://github.com/MichaelE55/pytest-custom_outputs/issues

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

pytest_custom_outputs-0.2.1.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

pytest_custom_outputs-0.2.1-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

Details for the file pytest_custom_outputs-0.2.1.tar.gz.

File metadata

  • Download URL: pytest_custom_outputs-0.2.1.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.8.10

File hashes

Hashes for pytest_custom_outputs-0.2.1.tar.gz
Algorithm Hash digest
SHA256 78117c315da1e9183b2ac53c15ce8f71c059eeed632eb5c9a4f74f7aad8e9b90
MD5 d9e9e89026be8383e6582f82f2aa0967
BLAKE2b-256 01068894da224dc5c7eea8ec3c4d22ecc2b3ffe3a1d50c0a8a05ddfa02e4c42a

See more details on using hashes here.

File details

Details for the file pytest_custom_outputs-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_custom_outputs-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b781b977b815f0dc06f3ed01814b4304ea9b957bbf5402e539edaea5b4d5ebbd
MD5 bb5d8d6ff702d1a374bebd67e8e9a77b
BLAKE2b-256 e488176bb9ec6498b2c3058d322cd1445a76c88d9c4d5ea11fea3b55f3067d05

See more details on using hashes here.

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