From 90e61ed3e8e765ff5557bc59a6a7b141124dba01 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Sat, 11 Apr 2026 18:54:01 -0500 Subject: refactor: retain and backfill only the last year of activity --- tests/test_contributions_api.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'tests/test_contributions_api.py') diff --git a/tests/test_contributions_api.py b/tests/test_contributions_api.py index 15af7d8..e568feb 100644 --- a/tests/test_contributions_api.py +++ b/tests/test_contributions_api.py @@ -68,9 +68,6 @@ def test_public_read_registers_actor_for_lazy_indexing(client: TestClient, db_se assert response.json()["is_recent_window_backfilled"] is False assert response.json()["recent_backfill_state"] == "pending" assert response.json()["recent_backfill_completed_at"] is None - assert response.json()["is_backfilled"] is False - assert response.json()["backfill_state"] == "pending" - assert response.json()["backfill_completed_at"] is None assert response.json()["last_polled_at"] is None assert tracked_actor is not None assert tracked_actor.is_active is True @@ -117,7 +114,6 @@ def test_contribution_stats_api(client: TestClient, db_session) -> None: assert response.json()["indexing_state"] == "indexed" assert response.json()["is_recent_window_backfilled"] is False assert response.json()["recent_backfill_state"] == "pending" - assert response.json()["is_backfilled"] is False def test_invalid_date_input_returns_400(client: TestClient) -> None: -- cgit v1.2.3