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.4.tar.gz (29.7 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.4-py3-none-any.whl (39.8 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for pytest_accept-0.2.4.tar.gz
Algorithm Hash digest
SHA256 b50ffbe1ec36b710662a90f6886f47cb1e7600c276799ce8102e3a14da0f47f2
MD5 dc3c95822845ccef6a6afaa145e0f8fd
BLAKE2b-256 75e638e0bdd7f10c395c715c3c07ae35f03630f22d8a41f8fe8c293f4bfd0a28

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_accept-0.2.4.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.4-py3-none-any.whl.

File metadata

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

File hashes

Hashes for pytest_accept-0.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 0629a0123a4e8bef829872feda593e640bbc90471d3f02c1f887e2ca972942bd
MD5 a3e4d38e07f7138efe6830cff8ed196c
BLAKE2b-256 efd5e28c13324a586d78aa359970472722e2e44ac76308f4c499c401ad041204

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_accept-0.2.4-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