tests(vcr): allow playback repeats so duplicate intra-test requests serve from cache

This commit is contained in:
mateo-berri 2026-04-30 22:57:21 +00:00
parent 73594262ee
commit 59d5901766
No known key found for this signature in database
2 changed files with 2 additions and 0 deletions

View file

@ -71,6 +71,7 @@ def vcr_config():
"filter_headers": list(_FILTERED_REQUEST_HEADERS),
"decode_compressed_response": True,
"record_mode": "once",
"allow_playback_repeats": True,
"match_on": (
"method",
"scheme",

View file

@ -95,6 +95,7 @@ def vcr_config():
"filter_headers": list(_FILTERED_REQUEST_HEADERS),
"decode_compressed_response": True,
"record_mode": "once",
"allow_playback_repeats": True,
"match_on": (
"method",
"scheme",