11 lines
268 B
Python
11 lines
268 B
Python
"""Test configuration for running directly from a source checkout."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
SRC_DIR = Path(__file__).resolve().parents[1] / "src"
|
|
if str(SRC_DIR) not in sys.path:
|
|
sys.path.insert(0, str(SRC_DIR))
|