vcrpy
vcrpy copied to clipboard
Automatically mock your HTTP interactions to simplify and speed up testing
In some cases, we need to determine if the actual request was invoked or the cached version was returned. In order to do that, we need to do an evolution...
This PR adds an option to remove previously recorded interactions if they are not used. I believe this feature can address the issue discussed in #208. We don't need to...
AFAIK, when `allow_playback_repeats` is `False`, the number of requests should be equal to the length of cassette data. But when we use `new_episodes` mode with same/matched requests called several times,...
Fix #753 I found `play_count` is heavily relied on in the tests to check if a record is newly added or being played. I'm wondering if - I should modify...
- allows modifying response based on request, and vice-versa - helps filter sensitive information out of recorded responses Closes #556 #527 Co-authored-by: Edward Delaporte (@edthedev) Co-authored-by: David Riddle (@ddriddle) Co-authored-by:...
aiohttp supports receiving list of pairs or multidict in case you want to send repeated ids, this PR adds support for this.
Hello, Regarding the website Amundi.com, I was unable to filter the POST data username & password. The Content-Type set is "application/json;charset=UTF-8", so strict comparison with "application/json" is not possible. Thanks...
When you have large response or request bodies it is almoust imposible to edit then directly in YAML file. To fix that, I created a command line tool, that will...
[aiosonic](https://aiosonic.readthedocs.io/en/stable/) is an async HTTP client, for example it's used in datadog-api-client library which I'm using in a project and need to write some tests for. This is a feature...