From 9083ad4e5990c19d50f61cb667a598a34d4f4440 Mon Sep 17 00:00:00 2001 From: halcy Date: Sun, 11 Feb 2024 16:03:45 +0200 Subject: [PATCH] try making the matching more lax --- tests/conftest.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 5978547..e29a93d 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -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 + )