use new interface
This commit is contained in:
parent
ffd9f29b7a
commit
9d13e9a4aa
1 changed files with 3 additions and 3 deletions
|
|
@ -56,17 +56,17 @@ def dotenv_config(request) -> dict[str, str]:
|
||||||
@pytest.fixture(scope="session", autouse=True)
|
@pytest.fixture(scope="session", autouse=True)
|
||||||
def RECORDS(dirmanager) -> Path:
|
def RECORDS(dirmanager) -> Path:
|
||||||
assert isinstance(dirmanager, DirManager)
|
assert isinstance(dirmanager, DirManager)
|
||||||
return dirmanager.dirs["records"]
|
return dirmanager.RECORDS
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="session", autouse=True)
|
@pytest.fixture(scope="session", autouse=True)
|
||||||
def STATES(dirmanager) -> Path:
|
def STATES(dirmanager) -> Path:
|
||||||
return dirmanager.dirs["states"]
|
return dirmanager.STATES
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="session", autouse=True)
|
@pytest.fixture(scope="session", autouse=True)
|
||||||
def RESULTS(dirmanager) -> Path:
|
def RESULTS(dirmanager) -> Path:
|
||||||
return dirmanager.dirs["results"]
|
return dirmanager.RESULTS
|
||||||
|
|
||||||
|
|
||||||
# log failed tests
|
# log failed tests
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue