7 lines
218 B
Python
7 lines
218 B
Python
# Crown Copyright (C) Dstl 2022. DEFCON 703. Shared in confidence.
|
|
from pathlib import Path
|
|
from typing import Final
|
|
|
|
TEST_CONFIG_ROOT: Final[Path] = Path(__file__).parent / "config"
|
|
"The tests config root directory."
|