mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 19:14:33 +00:00
- Fix kube context switching for k3s single-context kubeconfigs and k3d shorthand prefixes - Update common init/status scripts (registry, kerberos, cnpg backup, service layer, common services) - Add Gitea init script and installer ArgoCD screen - Add Supabase realtime probe patching plus regression tests - Extend installer core/UI test coverage
8 lines
181 B
Python
8 lines
181 B
Python
from __future__ import annotations
|
|
|
|
from installer.core.env import PROJECT_ROOT
|
|
|
|
|
|
def test_init_gitea_script_exists():
|
|
assert (PROJECT_ROOT / "etc" / "init_gitea.sh").is_file()
|