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
5 changes: 4 additions & 1 deletion tests/test_config_container.py
Original file line numberDiff line numberDiff 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