From 2e0c0f14e9ba74de6c590b265345b00535641dba Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Wed, 2 Sep 2026 14:25:46 -0700 Subject: [PATCH] Keep UUID migration check migration-only --- archivebox/tests/test_migrations_08_to_09.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebox/tests/test_migrations_08_to_09.py b/archivebox/tests/test_migrations_08_to_09.py index f9265962..a4794bed 100644 --- a/archivebox/tests/test_migrations_08_to_09.py +++ b/archivebox/tests/test_migrations_08_to_09.py @@ -482,7 +482,7 @@ def test_hyphenated_crawl_ids_are_normalized_before_snapshot_saves(migration_08_ assert hyphenated_crawls == 0 assert hyphenated_snapshot_refs == 0 - result = run_archivebox_migration_cmd(work_dir, ["update"], timeout=60) + result = run_archivebox_migration_cmd(work_dir, ["update", "--migrate-only"], timeout=60) output = result.stdout + result.stderr assert result.returncode == 0, f"Update failed after migration: {result.stderr}" assert "FOREIGN KEY constraint failed" not in output