mirror of
https://github.com/kevinveenbirkenbach/docker-volume-backup-cleanup.git
synced 2026-01-07 07:55:41 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c02ae86207 | |||
| 838286c54e | |||
| 9e67392bd6 | |||
| f402cea6f2 |
10
CHANGELOG.md
10
CHANGELOG.md
@@ -1,3 +1,13 @@
|
||||
## [1.3.0] - 2026-01-06
|
||||
|
||||
* Cleanup is now production-safe: only invalid backups are deleted; timeouts no longer trigger automatic removal.
|
||||
|
||||
|
||||
## [1.2.1] - 2026-01-06
|
||||
|
||||
* Fixed: --force-keep now applies to timestamp subdirectories inside each backup-docker-to-local folder instead of skipping entire backup folders.
|
||||
|
||||
|
||||
## [1.2.0] - 2025-12-31
|
||||
|
||||
* Adds a force keep N option to all mode to skip the most recent backups during cleanup, with Docker based E2E tests ensuring the latest backups are preserved.
|
||||
|
||||
105
README.md
105
README.md
@@ -7,21 +7,24 @@
|
||||
|
||||
**Repository:** https://github.com/kevinveenbirkenbach/cleanup-failed-backups
|
||||
|
||||
`cleanback` validates and (optionally) cleans up **failed Docker backup directories**.
|
||||
It scans backup folders under a configurable backups root (e.g. `/Backups`), uses `dirval` to validate each subdirectory, and lets you delete the ones that fail validation.
|
||||
`cleanback` validates and (optionally) cleans up **failed Docker backup directories** in a **production-safe** way.
|
||||
|
||||
Validation runs **in parallel** for performance; deletions are controlled and can be **interactive** or **fully automatic**.
|
||||
It scans backup folders under a configurable backups root (for example `/Backups`), uses `dirval` to validate each backup subdirectory, and removes **only those backups that are confirmed to be invalid**.
|
||||
|
||||
Validation runs **in parallel** for performance; deletions are **explicitly controlled** and can be interactive or fully automated.
|
||||
|
||||
---
|
||||
|
||||
## ✨ Highlights
|
||||
|
||||
- **Parallel validation** of backup subdirectories
|
||||
- Uses **`dirval`** (directory-validator) via CLI
|
||||
- **Interactive** or **non-interactive** deletion flow (`--yes`)
|
||||
- Uses **`dirval`** (directory validator) via CLI
|
||||
- **Safe deletion model**: only truly invalid backups are removed
|
||||
- **Interactive** or **non-interactive** cleanup (`--yes`)
|
||||
- Supports validating a single backup **ID** or **all** backups
|
||||
- Clear **exit code semantics** for CI and system services
|
||||
- Clean **Python package** with `pyproject.toml`
|
||||
- **Unit + Docker-based E2E tests**
|
||||
- **Unit tests** and **Docker-based E2E tests**
|
||||
|
||||
---
|
||||
|
||||
@@ -31,7 +34,7 @@ Validation runs **in parallel** for performance; deletions are controlled and ca
|
||||
|
||||
```bash
|
||||
pip install cleanback
|
||||
````
|
||||
```
|
||||
|
||||
This installs:
|
||||
|
||||
@@ -51,7 +54,7 @@ pip install -e .
|
||||
## 🔧 Requirements
|
||||
|
||||
* Python **3.8+**
|
||||
* Access to the backups root directory tree (e.g. `/Backups`)
|
||||
* Read/write access to the backups root directory tree (e.g. `/Backups`)
|
||||
* `dirval` (installed automatically via pip dependency)
|
||||
|
||||
---
|
||||
@@ -66,6 +69,8 @@ After installation, the command is:
|
||||
cleanback
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### Validate a single backup ID
|
||||
|
||||
```bash
|
||||
@@ -78,6 +83,8 @@ Validates directories under:
|
||||
/Backups/<ID>/backup-docker-to-local/*
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### Validate all backups
|
||||
|
||||
```bash
|
||||
@@ -92,50 +99,78 @@ Scans:
|
||||
|
||||
---
|
||||
|
||||
### Common options
|
||||
## ⚙️ Common options
|
||||
|
||||
| Option | Description |
|
||||
| -------------------- | ------------------------------------------------------------------ |
|
||||
| `--dirval-cmd <cmd>` | Path or name of `dirval` executable (default: `dirval`) |
|
||||
| `--workers <n>` | Parallel workers (default: CPU count, min 2) |
|
||||
| `--timeout <sec>` | Per-directory validation timeout (float supported, default: 300.0) |
|
||||
| `--yes` | Non-interactive mode: delete failures automatically |
|
||||
| `--force-keep <n>` | In `--all` mode: skip the last *n* backup folders (default: 0) |
|
||||
| Option | Description |
|
||||
| -------------------- | ------------------------------------------------------------------------------------- |
|
||||
| `--dirval-cmd <cmd>` | Path or name of `dirval` executable (default: `dirval`) |
|
||||
| `--workers <n>` | Number of parallel validator workers (default: CPU count, minimum 2) |
|
||||
| `--timeout <sec>` | Per-directory validation timeout in seconds (float supported, default: `300.0`) |
|
||||
| `--yes` | Non-interactive mode: automatically delete **invalid** backups (dirval rc=1 only) |
|
||||
| `--force-keep <n>` | In `--all` mode: skip the last *n* timestamp subdirectories inside each backup folder |
|
||||
|
||||
> **Note:** Backups affected by timeouts or infrastructure errors are **never deleted automatically**, even when `--yes` is used.
|
||||
|
||||
---
|
||||
|
||||
### Examples
|
||||
## 🧪 Examples
|
||||
|
||||
```bash
|
||||
# Validate a single backup and prompt on failures
|
||||
# Validate a single backup and prompt before deleting invalid ones
|
||||
cleanback --backups-root /Backups --id 2024-09-01T12-00-00
|
||||
|
||||
# Validate everything with 8 workers and auto-delete failures
|
||||
cleanback --backups-root /Backups --all --workers 8 --yes
|
||||
|
||||
# Use a custom dirval binary and short timeout
|
||||
cleanback --backups-root /Backups --all --dirval-cmd /usr/local/bin/dirval --timeout 5.0
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 🧪 Tests
|
||||
|
||||
### Run all tests
|
||||
```bash
|
||||
# Validate all backups and automatically delete invalid ones
|
||||
cleanback --backups-root /Backups --all --workers 8 --yes
|
||||
```
|
||||
|
||||
```bash
|
||||
make test
|
||||
# Use a custom dirval binary and a short timeout (testing only)
|
||||
cleanback \
|
||||
--backups-root /Backups \
|
||||
--all \
|
||||
--dirval-cmd /usr/local/bin/dirval \
|
||||
--timeout 5.0
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 🔒 Safety & Design Notes
|
||||
|
||||
* **No host filesystem is modified** during tests
|
||||
(E2E tests run exclusively inside Docker)
|
||||
* Deletions are **explicitly confirmed** unless `--yes` is used
|
||||
* Timeouts are treated as **validation failures**
|
||||
* Validation and deletion phases are **clearly separated**
|
||||
* **Validation and deletion are strictly separated**
|
||||
* Only backups explicitly marked **invalid by `dirval`** are eligible for deletion
|
||||
* **Timeouts and infrastructure errors are NOT treated as invalid backups**
|
||||
* Backups affected by timeouts are **never deleted automatically**
|
||||
* Infrastructure problems (timeouts, missing `dirval`) cause a **non-zero exit code**
|
||||
* Deletions require confirmation unless `--yes` is specified
|
||||
* Tests never touch the host filesystem (E2E tests run inside Docker only)
|
||||
|
||||
This design makes `cleanback` safe for unattended operation on production systems.
|
||||
|
||||
---
|
||||
|
||||
## 🚦 Exit codes
|
||||
|
||||
`cleanback` uses exit codes to clearly distinguish between backup issues and infrastructure problems:
|
||||
|
||||
| Exit code | Meaning |
|
||||
| --------- | ------------------------------------------------------------------ |
|
||||
| `0` | All backups valid, or invalid backups were successfully removed |
|
||||
| `1` | Validation infrastructure problem (e.g. timeout, missing `dirval`) |
|
||||
| `2` | CLI usage or configuration error |
|
||||
|
||||
This makes the tool suitable for **CI pipelines**, **systemd services**, and other automation.
|
||||
|
||||
---
|
||||
|
||||
## 🧪 Tests
|
||||
|
||||
Run all tests (unit + Docker-based E2E):
|
||||
|
||||
```bash
|
||||
make test
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "cleanback"
|
||||
version = "1.2.0"
|
||||
version = "1.3.0"
|
||||
description = "Cleanup Failed Docker Backups — parallel validator (using dirval)"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.8"
|
||||
|
||||
@@ -40,6 +40,20 @@ class ValidationResult:
|
||||
stdout: str
|
||||
|
||||
|
||||
def _sorted_timestamp_subdirs(path: Path) -> List[Path]:
|
||||
# Timestamp-like folder names sort correctly lexicographically.
|
||||
# We keep it simple: sort by name.
|
||||
return sorted([p for p in path.iterdir() if p.is_dir()], key=lambda p: p.name)
|
||||
|
||||
|
||||
def _apply_force_keep(subdirs: List[Path], force_keep: int) -> List[Path]:
|
||||
if force_keep <= 0:
|
||||
return subdirs
|
||||
if len(subdirs) <= force_keep:
|
||||
return []
|
||||
return subdirs[:-force_keep]
|
||||
|
||||
|
||||
def discover_target_subdirs(
|
||||
backups_root: Path, backup_id: Optional[str], all_mode: bool, force_keep: int
|
||||
) -> List[Path]:
|
||||
@@ -47,6 +61,8 @@ def discover_target_subdirs(
|
||||
Return a list of subdirectories to validate:
|
||||
- If backup_id is given: <root>/<id>/backup-docker-to-local/* (dirs only)
|
||||
- If --all: for each <root>/* that has backup-docker-to-local, include its subdirs
|
||||
force_keep:
|
||||
- Skips the last N timestamp subdirectories inside each backup-docker-to-local folder.
|
||||
"""
|
||||
targets: List[Path] = []
|
||||
if force_keep < 0:
|
||||
@@ -56,26 +72,25 @@ def discover_target_subdirs(
|
||||
raise FileNotFoundError(f"Backups root does not exist: {backups_root}")
|
||||
|
||||
if all_mode:
|
||||
backup_folders = sorted(p for p in backups_root.iterdir() if p.is_dir())
|
||||
|
||||
# Skip the last N backup folders (by sorted name order).
|
||||
# This is intentionally simple: timestamp-like folder names sort correctly.
|
||||
if force_keep:
|
||||
if len(backup_folders) <= force_keep:
|
||||
return []
|
||||
backup_folders = backup_folders[:-force_keep]
|
||||
|
||||
backup_folders = sorted(
|
||||
[p for p in backups_root.iterdir() if p.is_dir()],
|
||||
key=lambda p: p.name,
|
||||
)
|
||||
for backup_folder in backup_folders:
|
||||
candidate = backup_folder / "backup-docker-to-local"
|
||||
if candidate.is_dir():
|
||||
targets.extend(sorted([p for p in candidate.iterdir() if p.is_dir()]))
|
||||
subdirs = _sorted_timestamp_subdirs(candidate)
|
||||
subdirs = _apply_force_keep(subdirs, force_keep)
|
||||
targets.extend(subdirs)
|
||||
else:
|
||||
if not backup_id:
|
||||
raise ValueError("Either --id or --all must be provided.")
|
||||
base = backups_root / backup_id / "backup-docker-to-local"
|
||||
if not base.is_dir():
|
||||
raise FileNotFoundError(f"Directory does not exist: {base}")
|
||||
targets = sorted([p for p in base.iterdir() if p.is_dir()])
|
||||
subdirs = _sorted_timestamp_subdirs(base)
|
||||
subdirs = _apply_force_keep(subdirs, force_keep)
|
||||
targets = subdirs
|
||||
|
||||
return targets
|
||||
|
||||
@@ -257,11 +272,24 @@ def parse_args(argv: Optional[List[str]] = None) -> argparse.Namespace:
|
||||
"--force-keep",
|
||||
type=int,
|
||||
default=0,
|
||||
help="In --all mode: keep (skip) the last N backup folders under --backups-root (default: 0).",
|
||||
help="Keep (skip) the last N timestamp subdirectories inside each backup-docker-to-local folder (default: 0).",
|
||||
)
|
||||
return parser.parse_args(argv)
|
||||
|
||||
|
||||
def _is_timeout(res: ValidationResult) -> bool:
|
||||
return res.returncode == 124 or "timed out" in (res.stderr or "").lower()
|
||||
|
||||
|
||||
def _is_dirval_missing(res: ValidationResult) -> bool:
|
||||
return res.returncode == 127 or "not found" in (res.stderr or "").lower()
|
||||
|
||||
|
||||
def _is_invalid(res: ValidationResult) -> bool:
|
||||
# dirval: 0 = ok, 1 = invalid, others = infra errors (timeout/missing/etc.)
|
||||
return res.returncode == 1
|
||||
|
||||
|
||||
def main(argv: Optional[List[str]] = None) -> int:
|
||||
args = parse_args(argv)
|
||||
|
||||
@@ -281,18 +309,43 @@ def main(argv: Optional[List[str]] = None) -> int:
|
||||
return 0
|
||||
|
||||
results = parallel_validate(subdirs, args.dirval_cmd, args.workers, args.timeout)
|
||||
failures = [r for r in results if not r.ok]
|
||||
|
||||
if not failures:
|
||||
invalids = [r for r in results if _is_invalid(r)]
|
||||
timeouts = [r for r in results if _is_timeout(r)]
|
||||
missing = [r for r in results if _is_dirval_missing(r)]
|
||||
|
||||
deleted = 0
|
||||
if invalids:
|
||||
print(f"\n{len(invalids)} directory(ies) are invalid (dirval rc=1).")
|
||||
deleted = process_deletions(invalids, assume_yes=args.yes)
|
||||
|
||||
ok_count = sum(1 for r in results if r.ok)
|
||||
|
||||
if timeouts or missing:
|
||||
print("\nERROR: validation infrastructure problem detected.")
|
||||
if timeouts:
|
||||
print(f"- timeouts: {len(timeouts)} (will NOT delete these)")
|
||||
for r in timeouts[:10]:
|
||||
print(f" timeout: {r.subdir}")
|
||||
if len(timeouts) > 10:
|
||||
print(f" ... (+{len(timeouts) - 10} more)")
|
||||
if missing:
|
||||
print(f"- dirval missing: {len(missing)} (will NOT delete these)")
|
||||
for r in missing[:10]:
|
||||
print(f" missing: {r.subdir}")
|
||||
if len(missing) > 10:
|
||||
print(f" ... (+{len(missing) - 10} more)")
|
||||
|
||||
print(
|
||||
f"\nSummary: deleted={deleted}, invalid={len(invalids)}, ok={ok_count}, timeouts={len(timeouts)}, missing={len(missing)}"
|
||||
)
|
||||
return 1
|
||||
|
||||
if not invalids:
|
||||
print("\nAll directories validated successfully. No action required.")
|
||||
return 0
|
||||
|
||||
print(f"\n{len(failures)} directory(ies) failed validation.")
|
||||
deleted = process_deletions(failures, assume_yes=args.yes)
|
||||
kept = len(failures) - deleted
|
||||
print(
|
||||
f"\nSummary: deleted={deleted}, kept={kept}, ok={len(results) - len(failures)}"
|
||||
)
|
||||
print(f"\nSummary: deleted={deleted}, invalid={len(invalids)}, ok={ok_count}")
|
||||
return 0
|
||||
|
||||
|
||||
|
||||
@@ -121,13 +121,6 @@ class CleanbackE2EDockerTests(unittest.TestCase):
|
||||
env["PATH"] = f"{self.bin_dir}:{env.get('PATH', '')}"
|
||||
|
||||
# Run: python -m cleanback --id <ID> --yes
|
||||
# We must point BACKUPS_ROOT to our run_root. Easiest: set /Backups = run_root
|
||||
# But code currently has BACKUPS_ROOT = /Backups constant.
|
||||
#
|
||||
# Therefore, we create our test tree under /Backups (done above) and pass --id
|
||||
# relative to that structure by using run_root/<ID>. To do that, we make
|
||||
# run_root the direct child under /Backups, then we pass the composite id:
|
||||
# "<run-folder>/<ID>".
|
||||
composite_id = f"{self.run_root.name}/{self.backup_id}"
|
||||
|
||||
cmd = [
|
||||
@@ -148,14 +141,19 @@ class CleanbackE2EDockerTests(unittest.TestCase):
|
||||
]
|
||||
proc = subprocess.run(cmd, text=True, capture_output=True, env=env)
|
||||
|
||||
self.assertEqual(proc.returncode, 0, msg=proc.stderr or proc.stdout)
|
||||
# New behavior:
|
||||
# - invalid dirs are deleted and do NOT cause failure
|
||||
# - timeouts are treated as infrastructure problems -> exit code 1 and NOT deleted
|
||||
self.assertEqual(proc.returncode, 1, msg=proc.stderr or proc.stdout)
|
||||
|
||||
self.assertTrue(self.good.exists(), "good should remain")
|
||||
self.assertFalse(self.bad.exists(), "bad should be deleted")
|
||||
self.assertFalse(
|
||||
self.assertTrue(
|
||||
self.timeout.exists(),
|
||||
"timeout should be deleted (timeout treated as failure)",
|
||||
"timeout should NOT be deleted (timeouts are infrastructure problems)",
|
||||
)
|
||||
self.assertIn("Summary:", proc.stdout)
|
||||
self.assertIn("validation infrastructure problem", proc.stdout.lower())
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
||||
@@ -41,10 +41,19 @@ if __name__ == "__main__":
|
||||
class CleanbackE2EForceKeepTests(unittest.TestCase):
|
||||
"""
|
||||
E2E test that validates --force-keep in --all mode.
|
||||
It creates two backup folders directly under /Backups so --all can find them:
|
||||
|
||||
The current behavior is:
|
||||
- In --all mode, cleanback discovers each /Backups/<ID>/backup-docker-to-local/*
|
||||
- Within each backup-docker-to-local folder, subdirs are sorted by name
|
||||
- With --force-keep N, the last N subdirs in that folder are skipped (kept)
|
||||
|
||||
This test creates two backup folders under /Backups so --all can find them:
|
||||
/Backups/<prefix>-01/backup-docker-to-local/{good,bad}
|
||||
/Backups/<prefix>-02/backup-docker-to-local/{good,bad}
|
||||
With --force-keep 1, the last (sorted) backup folder (<prefix>-02) is skipped.
|
||||
|
||||
With --force-keep 1:
|
||||
- In each folder, "good" is the last (sorted) and is skipped (kept)
|
||||
- "bad" is processed and deleted
|
||||
"""
|
||||
|
||||
def setUp(self):
|
||||
@@ -123,7 +132,7 @@ class CleanbackE2EForceKeepTests(unittest.TestCase):
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
def test_all_mode_force_keep_skips_last_backup_folder(self):
|
||||
def test_all_mode_force_keep_skips_last_timestamp_subdir_per_backup_folder(self):
|
||||
env = os.environ.copy()
|
||||
env["PATH"] = f"{self.bin_dir}:{env.get('PATH', '')}"
|
||||
|
||||
@@ -148,13 +157,12 @@ class CleanbackE2EForceKeepTests(unittest.TestCase):
|
||||
|
||||
self.assertEqual(proc.returncode, 0, msg=proc.stderr or proc.stdout)
|
||||
|
||||
# First backup folder (<prefix>-01) should be processed: bad removed, good kept
|
||||
self.assertTrue(self.b1_good.exists(), "b1 good should remain")
|
||||
# In each folder, sorted subdirs are: bad, good -> good is skipped, bad is processed
|
||||
self.assertTrue(self.b1_good.exists(), "b1 good should remain (skipped)")
|
||||
self.assertFalse(self.b1_bad.exists(), "b1 bad should be deleted")
|
||||
|
||||
# Last backup folder (<prefix>-02) should be skipped entirely: both remain
|
||||
self.assertTrue(self.b2_good.exists(), "b2 good should remain (skipped)")
|
||||
self.assertTrue(self.b2_bad.exists(), "b2 bad should remain (skipped)")
|
||||
self.assertFalse(self.b2_bad.exists(), "b2 bad should be deleted")
|
||||
|
||||
self.assertIn("Summary:", proc.stdout)
|
||||
|
||||
|
||||
@@ -123,12 +123,12 @@ class CleanupBackupsUsingDirvalTests(unittest.TestCase):
|
||||
"--yes",
|
||||
]
|
||||
)
|
||||
self.assertEqual(rc, 0, msg=err or out)
|
||||
self.assertEqual(rc, 1, msg=err or out)
|
||||
self.assertTrue(self.goodA.exists(), "goodA should remain")
|
||||
self.assertFalse(self.badB.exists(), "badB should be deleted")
|
||||
self.assertFalse(
|
||||
self.assertTrue(
|
||||
self.timeoutC.exists(),
|
||||
"timeoutC should be deleted (timeout treated as failure)",
|
||||
"timeoutC should NOT be deleted (timeout is infra error)",
|
||||
)
|
||||
self.assertIn("Summary:", out)
|
||||
|
||||
@@ -147,16 +147,16 @@ class CleanupBackupsUsingDirvalTests(unittest.TestCase):
|
||||
"--yes",
|
||||
]
|
||||
)
|
||||
self.assertEqual(rc, 0, msg=err or out)
|
||||
self.assertEqual(rc, 1, msg=err or out)
|
||||
self.assertTrue(self.goodA.exists())
|
||||
self.assertFalse(self.badB.exists())
|
||||
self.assertFalse(self.timeoutC.exists())
|
||||
self.assertTrue(self.timeoutC.exists())
|
||||
self.assertTrue(self.goodX.exists())
|
||||
self.assertFalse(self.badY.exists())
|
||||
|
||||
def test_all_mode_force_keep_skips_last_backup_folder(self):
|
||||
# Given backup folders: ID1, ID2 (sorted)
|
||||
# --force-keep 1 should skip ID2 completely.
|
||||
|
||||
def test_all_mode_force_keep_skips_last_timestamp_subdir_per_backup_folder(self):
|
||||
# Subdirs are sorted by name.
|
||||
# --force-keep 1 skips the last subdir inside each backup-docker-to-local folder.
|
||||
rc, out, err, _ = self.run_main(
|
||||
[
|
||||
"--backups-root",
|
||||
@@ -175,14 +175,14 @@ class CleanupBackupsUsingDirvalTests(unittest.TestCase):
|
||||
)
|
||||
self.assertEqual(rc, 0, msg=err or out)
|
||||
|
||||
# ID1 should be processed
|
||||
self.assertTrue(self.goodA.exists())
|
||||
self.assertFalse(self.badB.exists())
|
||||
self.assertFalse(self.timeoutC.exists())
|
||||
# ID1 sorted: badB, goodA, timeoutC -> timeoutC is skipped, others processed
|
||||
self.assertTrue(self.goodA.exists(), "goodA should remain")
|
||||
self.assertFalse(self.badB.exists(), "badB should be deleted")
|
||||
self.assertTrue(self.timeoutC.exists(), "timeoutC should be skipped (kept)")
|
||||
|
||||
# ID2 should be untouched
|
||||
self.assertTrue(self.goodX.exists())
|
||||
self.assertTrue(self.badY.exists())
|
||||
# ID2 sorted: badY, goodX -> goodX is skipped, badY processed
|
||||
self.assertTrue(self.goodX.exists(), "goodX should be skipped (kept)")
|
||||
self.assertFalse(self.badY.exists(), "badY should be processed and deleted")
|
||||
|
||||
def test_dirval_missing_errors(self):
|
||||
rc, out, err, _ = self.run_main(
|
||||
@@ -198,8 +198,8 @@ class CleanupBackupsUsingDirvalTests(unittest.TestCase):
|
||||
"--yes",
|
||||
]
|
||||
)
|
||||
self.assertEqual(rc, 0, msg=err or out)
|
||||
self.assertIn("dirval not found", out + err)
|
||||
self.assertEqual(rc, 1, msg=err or out)
|
||||
self.assertIn("dirval missing", out + err)
|
||||
|
||||
def test_no_targets_message(self):
|
||||
empty = self.backups_root / "EMPTY" / "backup-docker-to-local"
|
||||
|
||||
Reference in New Issue
Block a user