Skip to main content

Pytest plugin for Proofy test reporting

Project description

pytest-proofy

Pytest plugin for Proofy test reporting with real-time results and rich metadata support.

Features

  • Multiple Reporting Modes: Live, Lazy, and Batch reporting
  • Rich Metadata: Decorators for test description, severity, tags, and custom attributes
  • Attachment Support: Add screenshots, logs, and other files to test results
  • Flexible Configuration: CLI, environment variables, and pytest.ini support
  • Local Backup: Automatic fallback to local JSON export

Installation

pip install pytest-proofy

Quick Start

Basic Usage

pytest --proofy \
       --proofy-token YOUR_TOKEN \
       --proofy-project-id 123

Note: The --proofy flag is required to activate the Proofy plugin. Without it, the plugin will not register or report test results.

Configuration

Command Line Options

# Activation
--proofy                            # Enable Proofy plugin (required)

# Core options
--proofy-mode {live,batch,lazy}     # Reporting mode
--proofy-api-base URL               # Proofy API base URL
--proofy-token TOKEN                # API authentication token
--proofy-project-id ID              # Project ID

# Run options
--proofy-run-id ID                  # Existing run ID to append to
--proofy-run-name NAME              # Custom run name
--proofy-run-attributes ATTRS       # Custom run attributes. Repeatable flag; accepts "k=v"

# Batch options
--proofy-batch-size N               # Results per batch (default: 10)

# Output options
--proofy-output-dir DIR             # Local backup directory
--proofy-backup                     # Create local backup files

Environment Variables

export PROOFY_MODE=live
export PROOFY_API_BASE=https://api.proofy.dev
export PROOFY_TOKEN=your-token-here
export PROOFY_PROJECT_ID=123

pytest.ini Configuration

[pytest]
proofy = true                       # Enable Proofy plugin
proofy_mode = lazy
proofy_api_base = https://api.proofy.dev
proofy_token = your-token-here
proofy_project_id = 123
proofy_batch_size = 20
proofy_output_dir = test-artifacts
proofy_run_attributes =
    env=staging
    version=1.2.3
    team=backend

Note: When proofy = true is set in pytest.ini, you don't need to use the --proofy flag. CLI flag has priority over ini configuration.

Reporting Modes

Live Mode (Default)

Real-time test reporting with immediate server updates:

pytest --proofy --proofy-mode live
  • Creates test result when test starts (IN_PROGRESS status)
  • Updates result when test finishes with final outcome
  • Uploads attachments immediately
  • Best for interactive development and debugging

Lazy Mode

Sends complete results after test execution:

pytest --proofy --proofy-mode lazy
  • Collects results during execution
  • Sends all results in batches at session end
  • Best for CI/CD environments

Batch Mode

Groups results and sends in configurable batches:

pytest --proofy --proofy-mode batch --proofy-batch-size 50
  • Collects results during execution
  • Sends results in batches
  • Optimized for large test suites
  • Configurable batch size

Run Attributes

Run attributes allow you to add metadata to your test runs, such as environment information, version numbers, and other custom data. Proofy automatically collects system information (Python version, OS, framework version) and allows you to add custom attributes.

Automatic System Attributes

The following attributes are automatically collected for every run:

  • python_version - Python version (e.g., "3.11.0")
  • platform - Platform details (e.g., "macOS-14.0-arm64")
  • framework - Test framework (e.g., "pytest")
  • framework_version - Framework version (e.g., "7.4.0")

Adding Custom Run Attributes

Via Command Line

pytest --proofy \
  --proofy-run-attributes env=prod \
  --proofy-run-attributes version=1.2 \
  --proofy-run-attributes team=qa

Via Environment Variable

export PROOFY_RUN_ATTRIBUTES="environment=staging,version=2.0.0"
pytest --proofy

Via pytest.ini

[pytest]
proofy_run_attributes =
    environment=development
    team=backend

Via conftest.py

# conftest.py
import proofy

def pytest_sessionstart(session):
    """Set run attributes at session start."""
    proofy.add_run_attributes(
        environment="staging",
        version="1.2.3",
        build_number="456",
        branch="feature/new-api"
    )

Via Runtime API in Tests

import proofy

def test_example():
    # You can also set run attributes from within tests
    # (though this is less common - usually set at session start)
    proofy.set_run_attribute("custom_key", "custom_value")
    proofy.add_run_attributes(
        environment="production",
        region="us-east-1"
    )

    # Get all run attributes
    attrs = proofy.get_run_attributes()
    assert "environment" in attrs

Using Decorators and Runtime API

Decorators

from proofy import name, description, severity, tags, attributes

@name("User Login Test")
@description("Validates user authentication with valid credentials")
@severity("critical")
@tags("auth", "smoke")
@attributes(component="auth", browser="chrome")
def test_user_login():
    # Test implementation
    assert login("user", "pass") == True

Runtime API

from proofy import (
    set_name, set_description, set_severity,
    add_tag, add_attributes, add_attachment, ArtifactType
)


def test_dynamic_metadata():
    set_name("Dynamic Test Name")
    set_description("This description is set at runtime")
    set_severity("high")

    # Test logic here
    result = perform_test()

    if result.screenshot:
        add_attachment(
            result.screenshot,
            name="test_screenshot",
            mime_type="image/png",
            artifact_type=ArtifactType.SCREENSHOT
        )

    add_attributes(
        execution_time=result.duration,
        environment="staging"
    )

Attachments

Add files to test results for better debugging:

from proofy import add_attachment, ArtifactType


def test_with_attachments():
    # Your test code
    take_screenshot("failure.png")
    save_logs("test.log")

    # Add attachments
    add_attachment("failure.png", name="Failure Screenshot", artifact_type=ArtifactType.SCREENSHOT)
    add_attachment("test.log", name="Test Logs", mime_type="text/plain")

Troubleshooting

Common Issues

  1. Authentication Errors

    # Verify token is correct
    curl -H "Authorization: Bearer YOUR_TOKEN" https://api.proofy.dev/health
    
  2. Large Test Suites

    # Use batch mode with larger batches
    pytest --proofy --proofy-mode batch --proofy-batch-size 100
    

Debug Mode

pytest --proofy --proofy-mode lazy -v -s

Local Backup

pytest --proofy --proofy-backup --proofy-output-dir ./test-results

Status mappings:

  • pytest passedPASSED (1)
  • pytest failedFAILED (2)
  • pytest errorBROKEN (3)
  • pytest skippedSKIPPED (4)

Development

# In monorepo root
uv venv .venv && source .venv/bin/activate
uv pip install -e ../proofy-commons -e .[dev]
uv run -q pytest -n auto

License

Apache-2.0 — see LICENSE file 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

pytest_proofy-0.1.1.tar.gz (18.3 kB view details)

Uploaded Source

Built Distribution

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

pytest_proofy-0.1.1-py3-none-any.whl (11.4 kB view details)

Uploaded Python 3

File details

Details for the file pytest_proofy-0.1.1.tar.gz.

File metadata

  • Download URL: pytest_proofy-0.1.1.tar.gz
  • Upload date:
  • Size: 18.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pytest_proofy-0.1.1.tar.gz
Algorithm Hash digest
SHA256 c714fcb6997a02ea2dcfc1295af9311746f8e3de3c4dc4c33a96a0028bf87da3
MD5 fb5547365638a1a595d09ba78838558a
BLAKE2b-256 6ba35e241f5ed873a73addee962cac98c969fcc3a400ed5d25744965af7d602f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_proofy-0.1.1.tar.gz:

Publisher: release.yml on getproofy/proofy-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_proofy-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: pytest_proofy-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 11.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pytest_proofy-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d86a088515ff4e008cd7d3c27e55e0a8b528a711ca34dbdb3902b5fd83043efd
MD5 c1e486b2254137ef29f6206f0a823bf8
BLAKE2b-256 8b1447a5f84a0e23118f809acec25e38db608aa891378f93615bb0c5b1efe6cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_proofy-0.1.1-py3-none-any.whl:

Publisher: release.yml on getproofy/proofy-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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