records -> results

This commit is contained in:
Daniel 2023-12-11 00:43:12 +01:00
parent 093818bc81
commit 7c1f1ff5d4
5 changed files with 13 additions and 18 deletions

View file

@ -11,11 +11,11 @@ class DirManager:
The structures is as follows:
tests dir/
session_id-1/
records
results
states
status
session_id-2/
records
results
...
"""
@ -32,7 +32,6 @@ class DirManager:
dirs: list[Path] = [
self.OUTPUT_DIR,
self.SESSION,
self.RECORDS,
self.HTML,
self.STATES,
self.ENV_FILES,
@ -50,13 +49,9 @@ class DirManager:
def SESSION(self):
return self.OUTPUT_DIR / self.session_id
@property
def RECORDS(self):
return self.SESSION / "records"
@property
def HTML(self):
return self.RECORDS / "html"
return self.RESULTS / "html"
@property
def STATES(self):