mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-08-04 00:46:52 +00:00
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>
7 lines
182 B
Python
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))
|