From 17acd42c7d42ea31b6bc10a792f55e4e8cc33b9b Mon Sep 17 00:00:00 2001 From: Justin Riley Date: Wed, 3 Aug 2016 11:33:36 -0400 Subject: [PATCH] vcr: decompress response bodies before recording --- onedns/tests/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/onedns/tests/__init__.py b/onedns/tests/__init__.py index effcb57..a35c0fa 100644 --- a/onedns/tests/__init__.py +++ b/onedns/tests/__init__.py @@ -8,5 +8,6 @@ vcr = VCR( os.path.dirname(os.path.realpath(__file__)), 'fixtures/oneclient' ), record_mode='once', + decode_compressed_response=True, path_transformer=VCR.ensure_suffix('.yaml'), )