thousandeyes-sdk-python/thousandeyes-sdk-core/test/conftest.py
Kevin 509c351f85 CP-2453 Add core test mock server and exception status mapping
Move the integration mock server into test-only sdk_test_support helpers
and expose ApiException.exception_class_for_http_status for generated
integration error assertions.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-24 15:34:11 +01:00

7 lines
182 B
Python

import sys
from pathlib import Path
_core_test_support = Path(__file__).resolve().parent
if str(_core_test_support) not in sys.path:
sys.path.insert(0, str(_core_test_support))