* add fixture to make api calls with authentification * add authentik test that checks the status of all blueprints * add option to append any kind of data to html report Reviewed-on: local-it-infrastructure/e2e_tests#14 Co-authored-by: Daniel <d.brummerloh@gmail.com> Co-committed-by: Daniel <d.brummerloh@gmail.com>
7 lines
213 B
Python
7 lines
213 B
Python
from pytest_abra import Runner, Test
|
|
|
|
|
|
class RunnerAuthentik(Runner):
|
|
env_type = "authentik"
|
|
setups = [Test(test_file="setup_authentik.py")]
|
|
tests = [Test(test_file="test_authentik_blueprint_api.py")]
|