Skip to main content

A simple approval test library utilizing external diff programs such as PyCharm and Visual Studio Code to compare approved and received output.

Project description

pytest approval

Build Status Sonarcloud Status PyPI - Version LICENSE status: active

A simple approval test library utilizing external diff programs such as Meld, PyCharm and Visual Studio Code to compare approved and received output.

About

Approval tests capture the output (a snapshot) of a piece of code and compare it with a previously approved version of the output (the expected result).

It's most useful in environments where frequent changes are common or where the output is of a complex nature but can be easily verified by humans, aided for example by a diff-tool or a visual representation of the output (think of an image).

Once the output has been approved then as long as the output stays the same the test will pass. A test fails if the received output is not identical to the approved version. In that case, the difference between the received and the approved output is reported to the tester.

For outputs that can be represented by text, a report can be as simple as printing the difference to the terminal. Using diff programs with a graphical user interface such as Meld, PyCharm or Visual Studio Code as reporter not only helps to visualize the difference, but they can also be used as approver by applying the changes of the received output to the approved output.

Not all data can or should be represented by text. In many cases an image is the best and most easily verifiable representation. PyCharm and Visual Studio Code can work with images as well.

A picture’s worth a 1000 tests (approvaltests.com).

Requirements

OS

  • Linux/Unix
  • macOS

One of following programs installed:

  • PyCharm
  • Visual Studio Code
  • Meld
  • GNU Diffutils (diff)

Installation

uv add pytest-approval

# Including image support
uv add --optional image pytest-approval

# Including plotly support
uv add --optional plotly pytest-approval

Usage

Verify text:

from pytest_approval import verify, verify_json


def test_verify_string():
    assert verify("Hello World!")


def test_verify_dict():
    # automatic conversion to JSON
    assert verify_json({"msg": "Hello World!"})
    # works with string as well
    assert verify_json('{"msg": "Hello World!"}')

To verify binary files such as an image PyCharm or Visual Studio Code needs to be installed. Examples:

from PIL import Image
from pytest_approval import verify_binary, verify_image, verify_image_pillow


def test_verify_binary(image):
    with open("my_image.jpg", "rb") as file:
        buffer = file.read()
    assert verify_binary(buffer, extension=".jpg")


def test_verify_image(image):
    image = Image.open("my_image.jpg")
    assert verify_image(image, extension=".jpg", content_only=True)


def test_verify_image_pillow(image):
    image = Image.open("my_image.jpg")
    assert verify_image_pillow(image, extension=".jpg")

Plotly figures can be verified as well. For comparison the JSON representation of a Plotly figure is used and for reporting the image representation.

from pytest_approval import verify_plotly
import plotly.graph_objects as go

FIGURE = go.Figure(
    data=go.Contour(
        z=[
            [10, 10.625, 12.5, 15.625, 20],
            [5.625, 6.25, 8.125, 11.25, 15.625],
            [2.5, 3.125, 5.0, 8.125, 12.5],
            [0.625, 1.25, 3.125, 6.25, 10.625],
            [0, 0.625, 2.5, 5.625, 10],
        ]
    )
)


def test_verify_plotly():
    assert verify_plotly(FIGURE)

During development its sometimes helpful to show received and approved output, to report, even though both are equal:

from pytest_approval import verify


def test_verify_string():
    assert verify("Hello World!", report_always=True)

Auto approval

It is possible to run auto approve every approval tests:

uv run pytest --auto-approve

This is useful for elimination of approval files which are not in use anymore.

  1. Make sure tests are green.
  2. Then remove all approval files.
  3. Run pytest in auto approval mode.

Configuration

Approved and received files are stored next to the test file per default. If you want to save those files in a specific directory instead, please set the approvals-dir key in your pyproject.toml:

[tool.pytest-approval]
"approvals-dir"="tests/approvals"  

The path is relative to pytest root (usually pyproject.toml).

Development

uv sync --all-extras
uv run prek install  # pre-commit hooks
uv run pytest
uv run pytest --markdown-docs -m markdown-docs README.md

Release

This project uses SemVer.

To make a new release run ./scripts/release.sh <version>.

Alternatives

  • Syrupy is a zero-dependency pytest snapshot plugin. It enables developers to write tests which assert immutability of computed results.
  • ApprovalTests.Python is an open source assertion/verification library to aid testing.

Comparison with ApprovalTests.Python

ApprovalTests.Python and ApprovalTests in general are the main inspiration for this library. The goal of this library is to provide a much smaller, simpler and maintainable code base while at the same time providing a simpler interface.

In contrast to ApprovalTests.Python this library features:

Comparison with Syrupy

  • Approval in syrupy happens by passing a command line argument --snapshot-update to PyTest.
  • Syrupy has not built-in diff reporter for images (See issues #886 and #566).

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_approval-0.15.1.tar.gz (63.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_approval-0.15.1-py3-none-any.whl (74.4 kB view details)

Uploaded Python 3

File details

Details for the file pytest_approval-0.15.1.tar.gz.

File metadata

  • Download URL: pytest_approval-0.15.1.tar.gz
  • Upload date:
  • Size: 63.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pytest_approval-0.15.1.tar.gz
Algorithm Hash digest
SHA256 8a874aa29e405bbc6f3f924c4ab05d8fcfe104d96c0e814a15225498ddc19fe1
MD5 f5bc6d86453abd4b1018c8d70ff01d54
BLAKE2b-256 de0acd2a89bf77ab5b2b82797f735e0fc013663595d3315c62245e7e6abec4b7

See more details on using hashes here.

File details

Details for the file pytest_approval-0.15.1-py3-none-any.whl.

File metadata

  • Download URL: pytest_approval-0.15.1-py3-none-any.whl
  • Upload date:
  • Size: 74.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pytest_approval-0.15.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8c8b6a58dec4a14c77c340f334d3b477ed3a4ee27e016fd122bfde53835108da
MD5 084f662b31a3dfebc2e23f16e3174ba0
BLAKE2b-256 5030f122af44e73f1bc08d291e7c84d18eb702428f78cb35749307c07f79d427

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