vcrpy icon indicating copy to clipboard operation
vcrpy copied to clipboard

Automatically mock your HTTP interactions to simplify and speed up testing

Results 197 vcrpy issues
Sort by recently updated
recently updated
newest added
trafficstars

Hey, love the tool overall, but I don't think it works for what must be an extremely common use case. I'm testing something that does (1) sent an auth request,...

It would sometimes be useful to know which endpoint we're working with during `before_record_response` - but I think that's not currently possible. What do you think to allowing `before_record_response` to...

Currently custom persisters must be registered by called the `register_persister` function on an existing VCR object, for example: `my_vcr = vcr.VCR(); my_vcr.register_persister(MyPersister)`. From an ergonomics point of view, it would...

has been trying to record a simple connection to a vCenter but it fails. When tracing that error I cannot understand what _baseclass stands for or where it is defined....

This PR fixes https://github.com/kevin1024/vcrpy/issues/507 Current implementation works only when we send requests using `session.request("POST", url, json={'a': 1})`. When `session.post(url, **kwargs)` is used, `kwargs` will look like this: ```python {'data': None,...

In the code there is a comment indicating that there is a way to not follow redirects here: https://github.com/kevin1024/vcrpy/blob/c79a06f639dd628536c9868044e78df1012985f9/vcr/stubs/aiohttp_stubs.py#L124-L125 However, it appears that the code does not check to see...

# 🚀 Milestones Hi, For anyone interested in the roadmap and projected release milestones please see the following link: https://github.com/kevin1024/vcrpy/milestones --- # 🎁 Contributing Issues and PRs Issues and PRs...

Hi, I tried using vcr to record http traffic during my unittests. It works fine, but I can't seem to be able to access the cassette to run assertions on...

Hi, I think the current latest readthedocs build is 4.0.2, could we get a build for 4.1? https://vcrpy.readthedocs.io/en/latest/installation.html Thanks!

Hello! First of all, VCR.py is a great piece of software we use very extensively in our integration tests. Thanks a lot for this great contribution and the ongoing maintenance....