turn dependencies into strings

This commit is contained in:
Daniel 2023-12-05 16:50:17 +01:00
parent 97fb896c43
commit 24dae132a1
4 changed files with 4 additions and 6 deletions

View file

@ -22,7 +22,7 @@ class Runner:
setups: list[Test] = []
tests: list[Test] = []
cleanups: list[Test] = []
dependencies: list[type["Runner"]] = []
dependencies: list[str] = []
prevent_skip = False
def __init__(self, dotenv_path: Path, output_dir: Path, session_id: str):