Merge pull request 'backups: add clanCore backup & clan borgbackup module' (#605) from lassulus-backups into main

This commit is contained in:
clan-bot
2023-12-04 16:51:33 +00:00
10 changed files with 234 additions and 15 deletions

View File

@@ -0,0 +1,22 @@
import logging
from cli import Cli
from fixtures_flakes import FlakeForTest
log = logging.getLogger(__name__)
def test_backups(
test_flake: FlakeForTest,
) -> None:
cli = Cli()
cli.run(
[
"--flake",
str(test_flake.path),
"backups",
"list",
"testhostname",
]
)