use new dir logic
This commit is contained in:
parent
746605fc62
commit
493b44fe0f
1 changed files with 3 additions and 3 deletions
|
|
@ -39,14 +39,14 @@ def dotenv_config(request) -> dict[str, str]:
|
|||
@pytest.fixture(scope="session", autouse=True)
|
||||
def RECORDS(dirmanager) -> Path:
|
||||
assert isinstance(dirmanager, DirManager)
|
||||
return dirmanager.get_all_dirs()["records"]
|
||||
return dirmanager.dirs["records"]
|
||||
|
||||
|
||||
@pytest.fixture(scope="session", autouse=True)
|
||||
def STATES(dirmanager) -> Path:
|
||||
return dirmanager.get_all_dirs()["states"]
|
||||
return dirmanager.dirs["states"]
|
||||
|
||||
|
||||
@pytest.fixture(scope="session", autouse=True)
|
||||
def RESULTS(dirmanager) -> Path:
|
||||
return dirmanager.get_all_dirs()["results"]
|
||||
return dirmanager.dirs["results"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue