Skyvern/conftest.py
Marc Kelechava c001fbeb42
SKY-9488: extract SDK run schema types (#5837)
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-06 13:15:01 -07:00

8 lines
427 B
Python

from skyvern.forge.sdk.forge_log import setup_logger
# After SKY-7947 (lightweight Skyvern wheel), `import skyvern` no longer
# configures structlog as a side effect. Without this call the default
# rich-based exception renderer is active during tests, which raises
# `TypeError: 'Mock' object is not iterable` when it tries to introspect
# Mock locals in tracebacks (e.g. utils_test.py::TestParseApiResponse).
setup_logger()