From 42e18fbfec1ee5ff6266dd6b987eab92250d2ccb Mon Sep 17 00:00:00 2001 From: ErnestaP Date: Tue, 23 Jan 2024 14:05:53 +0100 Subject: [PATCH] conftest: ignore opensearch host --- scoap3/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scoap3/conftest.py b/scoap3/conftest.py index 6ab699854..f551d256d 100644 --- a/scoap3/conftest.py +++ b/scoap3/conftest.py @@ -36,5 +36,5 @@ def vcr_config(): "decode_compressed_response": True, "filter_headers": ("Authorization", "User-Agent"), "record_mode": "once", - "ignore_hosts": ["127.0.0.1", "localhost"], + "ignore_hosts": ["127.0.0.1", "localhost", "opensearch"], }