records -> results
This commit is contained in:
parent
093818bc81
commit
7c1f1ff5d4
5 changed files with 13 additions and 18 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue