- SB3 Agent loading - rename agent.py -> agent_abc.py - rename hardcoded.py -> hardcoded_abc.py - Tests - Added in test asset that is used to load the SB3 Agent
10 lines
319 B
Python
10 lines
319 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."
|
|
|
|
TEST_ASSETS_ROOT: Final[Path] = Path(__file__).parent / "assets"
|
|
"The tests assets root directory."
|