├── .coveragerc ├── .gitignore ├── .travis.yml ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── README.rst ├── appveyor.yml ├── docs ├── changelog.md ├── configuration.md ├── hacking.md └── index.md ├── mkdocs.yml ├── pytest_vcr.py ├── setup.cfg ├── setup.py ├── tests ├── conftest.py └── test_vcr.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktosiek/pytest-vcr/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktosiek/pytest-vcr/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktosiek/pytest-vcr/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- 1 | docs/changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktosiek/pytest-vcr/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktosiek/pytest-vcr/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktosiek/pytest-vcr/HEAD/README.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktosiek/pytest-vcr/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktosiek/pytest-vcr/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktosiek/pytest-vcr/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktosiek/pytest-vcr/HEAD/docs/hacking.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktosiek/pytest-vcr/HEAD/docs/index.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktosiek/pytest-vcr/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pytest_vcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktosiek/pytest-vcr/HEAD/pytest_vcr.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktosiek/pytest-vcr/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktosiek/pytest-vcr/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_vcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktosiek/pytest-vcr/HEAD/tests/test_vcr.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktosiek/pytest-vcr/HEAD/tox.ini --------------------------------------------------------------------------------