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 48d44b945f - Show all commits

View file

@ -2,6 +2,7 @@ from pathlib import Path
from typing import Callable, Optional, TypedDict from typing import Callable, Optional, TypedDict
import pytest import pytest
from dirmanager import DirManager
from icecream import ic from icecream import ic
@ -19,6 +20,7 @@ class Runner:
self.dotenv_path = dotenv_path self.dotenv_path = dotenv_path
self.tests_dir = tests_dir self.tests_dir = tests_dir
self.session_id = session_id self.session_id = session_id
self.dir_manager = DirManager(tests_dir, session_id)
ic(f"creating instance of {self.__class__.__name__}") ic(f"creating instance of {self.__class__.__name__}")
assert self.test_dir_name is not None assert self.test_dir_name is not None