2023-07-10 15:55:10 +00:00
|
|
|
import os
|
2023-08-04 18:27:03 +00:00
|
|
|
import typing
|
2023-08-10 11:43:17 +00:00
|
|
|
from datetime import datetime
|
2023-08-04 18:27:03 +00:00
|
|
|
|
2023-07-10 15:55:10 +00:00
|
|
|
from scripts.utils.system_path import SystemPath
|
|
|
|
|
|
|
|
ROOT: SystemPath = SystemPath(__file__).resolve().parent.parent
|
|
|
|
|
2023-08-04 18:27:03 +00:00
|
|
|
# Runtime initialisation
|
|
|
|
TEST: typing.Optional[SystemPath] = None
|
|
|
|
TEST_VP: typing.Optional[SystemPath] = None
|
|
|
|
TEST_ARTIFACTS: typing.Optional[SystemPath] = None
|
|
|
|
|
2023-07-10 15:55:10 +00:00
|
|
|
# Test Directories
|
|
|
|
RUN_ID = os.getenv('RUN_DIR', f'run_{datetime.now():%d%m%Y_%H%M%S}')
|
|
|
|
TEMP: SystemPath = ROOT / 'tmp'
|
|
|
|
RESULTS: SystemPath = TEMP / 'results'
|
|
|
|
RUN: SystemPath = RESULTS / RUN_ID
|
2023-08-04 18:27:03 +00:00
|
|
|
VP: SystemPath = ROOT / 'ext' / 'vp'
|
|
|
|
TEST_FILES: SystemPath = ROOT / 'ext' / 'test_files'
|
2023-08-10 11:43:17 +00:00
|
|
|
TEST_USER_DATA: SystemPath = ROOT / 'ext' / 'user_data'
|
2023-07-10 15:55:10 +00:00
|
|
|
|
|
|
|
# Driver Directories
|
2023-08-04 18:27:03 +00:00
|
|
|
SQUISH_DIR = SystemPath(os.getenv('SQUISH_DIR'))
|
|
|
|
|
|
|
|
# Status Application
|
|
|
|
STATUS_DATA: SystemPath = RUN / 'status'
|