2025-01-02 15:05:06 +00:00
|
|
|
# © Crown-owned copyright 2025, Defence Science and Technology Laboratory UK
|
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."
|