From 63b92029b83fcbe04f78e69163418de3778c232b Mon Sep 17 00:00:00 2001 From: Jakub Kulik Date: Wed, 3 Dec 2025 15:36:10 +0100 Subject: [PATCH] handle missing vcr_mods gracefully --- tests/test_config_container.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_config_container.py b/tests/test_config_container.py index ac3c23e5d6..5455437bcb 100644 --- a/tests/test_config_container.py +++ b/tests/test_config_container.py @@ -6,7 +6,10 @@ # can figure out what kind of recording (via VCR) is being done and also so that they can take actions (e.g. waiting) # in a VCR compatible/friendly way -from . import vcr_mods # noqa: F401 +try: + from . import vcr_mods # noqa: F401 +except ImportError: + pass import oci import time