Skip to main content

Pytest report plugin for Squadcast

Project description

pytest-squadcast

Pytest report plugin for Squadcast

Allow to send incident on Squadcast product.

installation

pip install pytest-squadcast

Add option to send message

pytest --squadcast

Create payload via hook

def pytest_squadcast_create_payload(session: Session) -> dict:
    reporter = session.config.pluginmanager.get_plugin('terminalreporter')
    return {"data": {
                        "message": "This will be the incident message",
                        "description": "This will be the incident description",
                        "tags": {
                            "passed": str(reporter.stats.get('passed', [])),
                            "tagname2": "Tag value#2",
                        },
                        "status": "trigger",
                    },
            "service": "0d2a4409625e05adbc1d81b3540ag89826bfa7cc",
            }

Dev

Change version

edit

pytest_squadcast/__init__.py

commit

git commit -m "v0.1.0"

tag

git tag v0.1.0

Build package

python -m build
twine upload dist/*

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-squadcast-0.1.4.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

pytest_squadcast-0.1.4-py3-none-any.whl (4.9 kB view hashes)

Uploaded Python 3

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