implement env manager (#6)
* add EnvManager class * holds all functions that are env file related * integrates runner dependency resolution * add integration and unit tests for EnvManager Reviewed-on: local-it-infrastructure/e2e_tests#6 Co-authored-by: Daniel <d.brummerloh@gmail.com> Co-committed-by: Daniel <d.brummerloh@gmail.com>
This commit is contained in:
parent
d3dc0f942a
commit
3fa10aaa69
18 changed files with 264 additions and 198 deletions
|
|
@ -1 +1,16 @@
|
|||
from src.tests_authentik.fixtures_authentik import admin_context, authentik_admin_page, user_context
|
||||
import os
|
||||
|
||||
from src.tests_authentik.fixtures_authentik import (
|
||||
authentik_admin_context,
|
||||
authentik_admin_page,
|
||||
authentik_user_context,
|
||||
authentik_user_page,
|
||||
)
|
||||
|
||||
NEXTCLOUD_DEMO_USER = {
|
||||
"NEXTCLOUD_USER": "next_demo_user",
|
||||
"NEXTCLOUD_PASS": "P@ss.123",
|
||||
}
|
||||
|
||||
for key, value in NEXTCLOUD_DEMO_USER.items():
|
||||
os.environ[key] = value
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue