mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-08-04 08:56:50 +00:00
Sync OAS-driven integration test artifacts (mock manifest, test base, conftest, and per-operation integration tests) across 21 packages for CP-2453 full rollout evaluation. Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
245 B
Python
8 lines
245 B
Python
import sys
|
|
from pathlib import Path
|
|
|
|
_repo_root = Path(__file__).resolve().parents[2]
|
|
_core_test_support = _repo_root / "thousandeyes-sdk-core" / "test"
|
|
if str(_core_test_support) not in sys.path:
|
|
sys.path.insert(0, str(_core_test_support))
|