diff options
| author | Christian Cleberg <[email protected]> | 2026-04-12 11:43:27 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-04-12 11:43:27 -0500 |
| commit | 4390684995c9933f213faec2cb20f39af6d506d2 (patch) | |
| tree | fac5252756c038e9fdb3444a1a4d68863e1683f3 /tests/test_migrations.py | |
| parent | daaeba8be8df4d0876312e540bdd420e16ff724c (diff) | |
| download | hutch-stats-4390684995c9933f213faec2cb20f39af6d506d2.tar.gz hutch-stats-4390684995c9933f213faec2cb20f39af6d506d2.tar.bz2 hutch-stats-4390684995c9933f213faec2cb20f39af6d506d2.zip | |
add temporary self-graph indexing priority
Diffstat (limited to 'tests/test_migrations.py')
| -rw-r--r-- | tests/test_migrations.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/test_migrations.py b/tests/test_migrations.py index 3ce842b..e646ccf 100644 --- a/tests/test_migrations.py +++ b/tests/test_migrations.py @@ -122,7 +122,14 @@ def test_alembic_upgrade_adopts_legacy_schema(tmp_path) -> None: assert "discovered_repositories" in inspector.get_table_names() assert "tracked_actors" in inspector.get_table_names() assert "service_backfill_states" in inspector.get_table_names() - assert {"discovery_state", "queued_for_discovery_at", "next_poll_after", "last_claimed_at", "poll_attempts"} <= tracked_actor_columns + assert { + "discovery_state", + "queued_for_discovery_at", + "priority_boosted_at", + "next_poll_after", + "last_claimed_at", + "poll_attempts", + } <= tracked_actor_columns def test_alembic_prefers_database_url_from_environment(tmp_path, monkeypatch) -> None: |
