skillfed

pytest-vcr

Plugin for managing VCR.py cassettes

pytest-vcr v1.0.2 2.3M downloads/30d#3,160 on PyPI182
Permissive license MIT Abandoned released

What it is and what it does

pytest-vcr is a pytest plugin that wraps VCR.py to record HTTP interactions during test execution and replay them on subsequent runs. When you annotate a test with @pytest.mark.vcr(), the plugin automatically captures all HTTP requests and responses made by that test into a YAML cassette file, stored alongside your test. On future runs, the plugin replays those recorded interactions instead of making live network calls, making tests faster, more reliable, and independent of external services.

The plugin is designed to be minimal and declarative: you add a decorator to your test, and the cassette management happens automatically. Cassette files are intended to be committed to version control so that all developers and CI systems use the same recorded interactions. The project is in production/stable status but has been abandoned since 2019, meaning it receives no updates for newer Python versions or pytest features.

Use it for:

  • Record HTTP interactions during development and replay them in CI to avoid flaky tests caused by network timeouts or external service changes.
  • Test code that calls third-party APIs without requiring valid credentials or network access during test runs.
  • Ensure deterministic test behavior by replaying the same HTTP responses across all environments and developers.
  • Reduce test suite runtime by eliminating network latency from HTTP-dependent tests.
  • Audit and version-control the exact HTTP exchanges your code makes, useful for debugging and compliance.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

A pytest plugin that integrates VCR.py to record and replay HTTP interactions in tests, eliminating the need for live network calls during test runs.

Yes, if your tests rely on HTTP calls and you're running on Python versions up to 3.7 with compatible pytest versions. The plugin is simple and does its job well. However, be aware it is abandoned—no maintenance since 2019—so if you need compatibility with modern Python or pytest, or if you encounter bugs, you may need to fork it or switch to an alternative. For stable, long-running projects on older Python stacks, it remains a solid choice.

Install

pytest-vcr on PyPI

pip

pip install pytest-vcr

uv

uv add pytest-vcr

poetry

poetry add pytest-vcr

Installing pytest-vcr

Before you install

Low friction install with two straightforward runtime dependencies (pytest and vcrpy). However, the project is abandoned—last release was April 2019 and last commit May 2022—so expect no maintenance, bug fixes, or compatibility updates for newer Python or pytest versions.

License in practice

MIT license is permissive; you can use this in commercial or proprietary projects with minimal restrictions, provided you retain the license notice.

Quickstart

pip install pytest-vcr

# In your test file:
import pytest
from urllib.request import urlopen

@pytest.mark.vcr()
def test_example():
    response = urlopen('http://www.example.com').read()
    assert b'Example' in response

Requires pytest and vcrpy to be installed; relies on pytest's marker system, so pytest must be your test runner.

Verify before relying

  • Compatibility with pytest versions released after 2019 and Python 3.8+.
  • Whether cassette format remains compatible with recent vcrpy releases.
  • Active maintenance status or community forks that may have continued development.

Package facts

License MIT (permissive)
Python support not specified
Install friction low — pure-Python wheel
Runtime dependencies 2 — pytest, vcrpy
Maintenance abandoned — 2,667 days since the last release
Last repo commit
First released
Downloads 2,292,932/month — #3,160 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: pytest_vcr-1.0.2-py2.py3-none-any.whl

Development Status :: 5 - Production/StableFramework :: PytestIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 2Programming Language :: Python :: 2.7Programming Language :: Python :: 3Programming Language :: Python :: 3.4Programming Language :: Python :: 3.5Programming Language :: Python :: 3.6Programming Language :: Python :: 3.7Programming Language :: Python :: Implementation :: CPythonProgramming Language :: Python :: Implementation :: PyPyTopic :: Software Development :: Testing

Tags

pytest vcr cassette recordingmock http requests in testsrecord replay http interactionsvcr.py pytest plugintest fixtures http mockingnetwork request recordingcassette-based test isolation
http-mockingtest-fixturesvcr-cassettes

More Testing packages