authentik setup and tracing #2
3 changed files with 0 additions and 13 deletions
|
|
@ -84,9 +84,6 @@ class Runner:
|
|||
def show_files(self):
|
||||
ic(list(self.root_dir.glob("*")))
|
||||
|
||||
def run_setup(self):
|
||||
pass
|
||||
|
||||
def run_tests(self):
|
||||
self._run_main_test()
|
||||
for sub_test in self.sub_tests:
|
||||
|
|
|
|||
|
|
@ -17,8 +17,3 @@ class RunnerAuthentik(Runner):
|
|||
test_dir_name = "tests_authentik"
|
||||
main_setup_name = "setup_authentik.py"
|
||||
# main_test_name = "test_authentik_dummy.py"
|
||||
|
||||
def run_setup(self):
|
||||
# run setup
|
||||
# setup_authentik(self.config, self.dir_manager.STATES)
|
||||
pass
|
||||
|
|
|
|||
|
|
@ -13,9 +13,6 @@ class TestRunner(Protocol):
|
|||
def __init__(self, dotenv_path: Path, output_dir: Path, session_id: str):
|
||||
...
|
||||
|
||||
def run_setup(self):
|
||||
...
|
||||
|
||||
def run_tests(self):
|
||||
...
|
||||
|
||||
|
|
@ -40,8 +37,6 @@ class Wrapper:
|
|||
|
||||
def run_test(self):
|
||||
self.runners: list[TestRunner] = self._load_runners(self.env_files)
|
||||
for runner in self.runners:
|
||||
runner.run_setup()
|
||||
for runner in self.runners:
|
||||
runner.run_tests()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue