* turn repo into installable package (pip install -e .) * add hatchling build packend * call it pytest-abra * add pytest entrypoint, so that it gets loaded automatically if installed (and pytest is run) * make fixtures optional, so that pytest can still be used in other context * add cli script -> you can now directly run "pytest-abra" in console Reviewed-on: local-it-infrastructure/e2e_tests#9 Co-authored-by: Daniel <d.brummerloh@gmail.com> Co-committed-by: Daniel <d.brummerloh@gmail.com>
16 lines
531 B
Python
16 lines
531 B
Python
from pytest_abra.runner import Runner, Test
|
|
|
|
|
|
def condition_always_false(dotenv_config: dict[str, str]) -> bool:
|
|
return False
|
|
|
|
|
|
class RunnerNextcloud(Runner):
|
|
env_type = "nextcloud"
|
|
dependencies = ["authentik"]
|
|
setups = [Test(test_file="setup_nextcloud.py", prevent_skip=False)]
|
|
tests = [
|
|
Test(test_file="tests_nextcloud.py", prevent_skip=True),
|
|
# Test(condition=condition_always_false, test_file="tests_nextcloud_onlyoffice.py"),
|
|
]
|
|
# cleanups = [Test(test_file="cleanup_nextcloud.py")]
|