Skip to main content

No project description provided

Project description

pytest-accept

GitHub Workflow CI Status PyPI Version GitHub License

pytest-accept is a pytest plugin for automatically updating outputs. It runs along with pytest, observes the generated outputs, and writes them to the test's documented outputs.

Before

def extract_functions(code):
    return re.findall(r"(\w+)\(", code)


def test_extract_functions():
    assert extract_functions("print('hi')") == ["print"]
    assert extract_functions("sum(map(f, x))") == ["sum"]

After pytest --accept

def test_extract_functions():
    assert extract_functions("print('hi')") == ["print"]
-   assert extract_functions("sum(map(f, x))") == ["sum"]
+   assert extract_functions("sum(map(f, x))") == ["sum", "map"]

pytest-accept is decoupled from the tests it works with — it can be used with existing tests, and the tests it edits are no different from normal tests. It works with both doctests and normal assert statements.

Installation

uv tool install -U pytest-accept

Or with pip:

pip install pytest-accept

To run, just pass --accept to pytest:

pytest --accept

Why?

  • Often it's fairly easy to observe whether something is working by viewing the output it produces
  • ...but often the output is verbose, and copying and pasting the output into the test is tedious
  • pytest-accept does the copying & pasting for you
  • Similarly, lots of folks generally find writing any tests a bit annoying, and prefer to develop by "running the code and seeing if it works". This library aims to make testing a joyful part of that development loop

This style of testing is fairly well-developed in some languages, although still doesn't receive the attention I think it deserves, and historically hasn't had good support in python.

The best explanation I've seen on this testing style is from @yminsky in a Jane Street Blogpost. @matklad also has an excellent summary in his blog post How to Test.

How it works

pytest-accept:

  • Intercepts test failures from both doctests and assert statements
  • Parses the files to understand where the documented values are
  • Updates the documented values to match the generated values
  • Writes everything back atomically

Things to know:

  • Simple comparisons only: Assert rewriting only works with == comparisons against literals or simple expressions
  • Overwrite by default: Pass --accept-copy to write to .py.new files instead.
Doctest quirks

Doctests are great for examples, but they have quirks

  • Use raw strings for examples with backslashes:

    r"""
    >>> print("\n")
    \n
    """
    
  • We handle blank lines automatically:

    """
    >>> print("one\n\ntwo")
    one
    <BLANKLINE>
    two
    """
    
  • Really long outputs get truncated so they won't break your editor

Prior art

This testing style goes by many names: "snapshot testing", "regression testing", "expect testing", "literate testing", or "acceptance testing". Whatever the name, the pattern is the same: write tests, see what they produce, accept what's correct.

@matklad has an excellent overview in How to Test. The approach is well-established in many languages:

For more complex test scenarios, consider:

thanks to @untiaker, who found how to expand the original doctest solution into an approach that works with standard assert statements.

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_accept-0.2.3.tar.gz (26.0 kB view details)

Uploaded Source

Built Distribution

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

pytest_accept-0.2.3-py3-none-any.whl (35.6 kB view details)

Uploaded Python 3

File details

Details for the file pytest_accept-0.2.3.tar.gz.

File metadata

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

File hashes

Hashes for pytest_accept-0.2.3.tar.gz
Algorithm Hash digest
SHA256 c747d92ef0bcac0dc20e46f3dfb73b8e9aee970de11b98985868560ca508d06e
MD5 742a88f6627f2ec435243cd95da0e41b
BLAKE2b-256 361537f660ba2b40875324b41d343976962f09c8bef5ba668544236afb424bd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_accept-0.2.3.tar.gz:

Publisher: pypi-release.yaml on max-sixty/pytest-accept

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_accept-0.2.3-py3-none-any.whl.

File metadata

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

File hashes

Hashes for pytest_accept-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 dad6934349fcd78d31d2f4e0daa372d47f2c11525c7c0802f12c3efe422c8d89
MD5 4cdea59d54c4dc501965056665e0aca5
BLAKE2b-256 272950a8582f90c7d31a9df2ecafb345f6cd3f6a9eaad1b4a94a50ce83eb6ee2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_accept-0.2.3-py3-none-any.whl:

Publisher: pypi-release.yaml on max-sixty/pytest-accept

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