authentik setup and tracing #2

Merged
dan merged 69 commits from working-setup into dev 2023-11-27 17:01:47 +01:00
Showing only changes of commit 21105a001b - Show all commits

View file

@ -16,8 +16,10 @@ class DirManager:
...
"""
def __init__(self, tests_dir: Path, session_id: str):
def __init__(self, tests_dir: Path | str, session_id: str):
# root test dir
if isinstance(tests_dir, str):
tests_dir = Path(tests_dir)
self._tests_dir = tests_dir.resolve()
self.session_id = session_id