1 parent f4e4a30 commit 3f21319Copy full SHA for 3f21319
1 file changed
tests/integration/ops/test_runbook_paths.py
@@ -10,7 +10,10 @@ def test_runbook_mentions_reindex_recovery() -> None:
10
cron_script = Path("scripts/ops/install-backup-cron.sh").read_text(encoding="utf-8")
11
12
assert "reindex" in runbook.lower()
13
- assert 'git -C "$CORPUS_ROOT" push' in backup_script
+ assert "git -C \"${CORPUS_ROOT}\" add -A" in backup_script
14
+ assert "git -C \"${CORPUS_ROOT}\" commit" in backup_script
15
+ assert "git -C \"${CORPUS_ROOT}\" push -u origin" in backup_script
16
assert "status" in restore_script
17
assert "crontab" in cron_script
18
assert "backup.sh" in cron_script
19
+ assert "DORY_CORPUS_ROOT" in cron_script
0 commit comments