10 lines
325 B
Python
10 lines
325 B
Python
# Crown Owned Copyright (C) Dstl 2023. 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."
|
|
|
|
TEST_ASSETS_ROOT: Final[Path] = Path(__file__).parent / "assets"
|
|
"The tests assets root directory."
|