Skip to main content

pytest-pvcr

PyPI version Python versions License

A pytest plugin that records and replays commands executed with subprocess.run(), inspired by VCR.py.

Installation

pip install pytest-pvcr

Usage

Mark your tests with @pytest.mark.pvcr() and run them:

import subprocess
import pytest


@pytest.mark.pvcr()
def test_ls():
    ret = subprocess.run(["ls", "/tmp"])
    assert ret.returncode == 0


@pytest.mark.pvcr(wait=False)
def test_slow_command():
    # On replay, pvcr won't sleep for the original command duration
    ret = subprocess.run(["sleep", "10"])
    assert ret.returncode == 0
pytest --pvcr-record-mode=new test_commands.py

Recordings are stored as YAML files in recordings/<module>/<test_name>.yaml.

Record modes

# Only record new commands not previously recorded (default)
pytest --pvcr-record-mode=new

# Replay only, never record
pytest --pvcr-record-mode=none

# Re-record all commands, even previously recorded ones
pytest --pvcr-record-mode=all

# Record on first run, then replay only and block unrecorded commands
pytest --pvcr-record-mode=once

The once mode is useful in CI: it records everything on the first run (when no recording file exists), then on subsequent runs it replays and raises PVCRBlockedRunException if an unrecorded command is encountered.

Block execution

Block all unrecorded subprocess calls, useful to protect test environments:

pytest --pvcr-block-run

Fuzzy matching

Fuzzy matching replaces variable parts of commands so recordings stay portable.

Via CLI (global, applies to all tests):

# Ignore `--dry-run` arguments when matching commands
pytest --pvcr-fuzzy-matcher='--dry-run'

# Keep only the filename from a path
pytest --pvcr-fuzzy-matcher='^.+\/(kubeconfig)$'

# Automatically ignore the parent directory of the test file
pytest --pvcr-auto-fuzzy-match

Via marker (per-test):

@pytest.mark.pvcr()
@pytest.mark.pvcr_fuzzy_matcher(r"^.+\/(config\.yml)$")
def test_with_fuzzy():
    subprocess.run(["cat", "/some/path/config.yml"])

If a regex has no capture groups, the matched string is replaced with a placeholder. If a regex has capture groups, the captured parts are kept and the rest is replaced.

Python support

Python >= 3.12

Authors

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest_pvcr-0.2.0.tar.gz (9.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_pvcr-0.2.0-py3-none-any.whl (11.6 kB view details)

Uploaded Python 3

File details

Details for the file pytest_pvcr-0.2.0.tar.gz.

File metadata

  • Download URL: pytest_pvcr-0.2.0.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pytest_pvcr-0.2.0.tar.gz
Algorithm Hash digest
SHA256 762ba702de443345d307f2049171e2e2868d6e1721883454bbcb6053cc000e37
MD5 048b80622e53fa2c8bc5d312d2adf5b4
BLAKE2b-256 cf070c028dc1a534b15d7da8b56c399418a36709a2a3149c248b9e04371414f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_pvcr-0.2.0.tar.gz:

Publisher: publish-to-pypi.yml on kafeinnet/pytest-pvcr

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_pvcr-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: pytest_pvcr-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pytest_pvcr-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 236ba04fc3c4ae77f20a02ecc6cc29f464c5c61c9f9f2ebf2ddf0485c304c17d
MD5 7eb835d7d426c2a7458152310e06ccfc
BLAKE2b-256 af3a3b9e4e68fb0d70e6774e05314b698f83e8bec47046f0acfd0206c9430387

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_pvcr-0.2.0-py3-none-any.whl:

Publisher: publish-to-pypi.yml on kafeinnet/pytest-pvcr

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

Release history Release notifications | RSS feed

This release

0.2.0 This release

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page