mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 11:03:59 +00:00
- Add build-context helper to copy Docker context safely (ignore runtime data, keep symlinks) - Update UI and core actions to use ~/.prole/build and shared copy helper - Add/adjust tests and scripts; introduce knoe ops helpers and update manifests Co-authored-by: Junie <junie@jetbrains.com>
8 lines
176 B
Python
8 lines
176 B
Python
from __future__ import annotations
|
|
|
|
from knoe.core.env import PROJECT_ROOT
|
|
|
|
|
|
def test_init_gitea_script_exists():
|
|
assert (PROJECT_ROOT / "etc" / "init_gitea.sh").is_file()
|