mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-09-18 07:53:55 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.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))
|