try making the matching more lax

master
halcy 2024-02-11 16:03:45 +02:00
rodzic 8713b8670d
commit 9083ad4e59
1 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

@ -54,9 +54,10 @@ def status3(api2):
yield _status
api2.status_delete(_status['id'])
# Match very generously, so as to not upset any tests
@pytest.fixture(scope="module")
def vcr_config():
return dict(
match_on = ['method', 'path', 'query', 'body'],
decode_compressed_response = True
)
match_on = ['path'],
decode_compressed_response = True
)