rename runner.name to runner.env_type

This commit is contained in:
Daniel 2023-12-05 23:24:37 +01:00
parent e415b8a16a
commit a6c7a18e7b
7 changed files with 10 additions and 10 deletions

View file

@ -4,7 +4,7 @@ from abratest.runner import Runner, Test
class RunnerDemo(Runner):
"""Every env file has a corresponding runner class"""
name: str = "demo" # name of the test, used for logging / output naming
env_type = "demo" # name of the test, used for logging / output naming
# this indicates that tests from RunnerDemo depend on the setup from RunnerAuthentik.
# RunnerDemo will only execute, when setup_authentik.py has finished successfully.