2023-07-17 19:57:34 +01:00
|
|
|
# Crown Owned Copyright (C) Dstl 2023. DEFCON 703. Shared in confidence.
|
2023-05-25 14:05:53 +01:00
|
|
|
from pathlib import Path
|
|
|
|
|
from typing import Final
|
|
|
|
|
|
|
|
|
|
TEST_CONFIG_ROOT: Final[Path] = Path(__file__).parent / "config"
|
|
|
|
|
"The tests config root directory."
|
2023-07-13 16:24:03 +01:00
|
|
|
|
|
|
|
|
TEST_ASSETS_ROOT: Final[Path] = Path(__file__).parent / "assets"
|
|
|
|
|
"The tests assets root directory."
|