Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
handle missing vcr_mods gracefully
  • Loading branch information
kulikjak committed Dec 3, 2025
commit 63b92029b83fcbe04f78e69163418de3778c232b
5 changes: 4 additions & 1 deletion tests/test_config_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down