--- id: pytest-vcr version: "1.0.2" license: MIT license_treatment: permissive maintenance: abandoned --- # pytest-vcr — Plugin for managing VCR.py cassettes License: permissive · Maintenance: abandoned · Downloads: 2.3M/mo ## 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 above — 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 pip install pytest-vcr uv add pytest-vcr 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: unspecified - Install friction: low - Maintenance: abandoned - Downloads: 2.3M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags pytest vcr cassette recording, mock http requests in tests, record replay http interactions, vcr.py pytest plugin, test fixtures http mocking, network request recording, cassette-based test isolation, http-mocking, test-fixtures, vcr-cassettes [View on SkillFed](https://skillfed.io/packages/pytest-vcr) · [View on PyPI](https://pypi.org/project/pytest-vcr/)