From 376273270ae26da2f3dd856510b336313a2c0434 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Tue, 1 Sep 2026 12:47:46 -0700 Subject: [PATCH] Remove obsolete background hook convention --- archivebox/tests/test_hooks.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/archivebox/tests/test_hooks.py b/archivebox/tests/test_hooks.py index 621a3931..14fdd4f2 100755 --- a/archivebox/tests/test_hooks.py +++ b/archivebox/tests/test_hooks.py @@ -73,11 +73,6 @@ class TestBackgroundHookDetection: assert any(hook.name == "on_Snapshot__35_wget.finite.bg.py" for hook in background_hooks) assert any(hook.name == "on_Snapshot__93_hashes.py" for hook in foreground_hooks) - def test_legacy_background_marker_remains_supported_for_user_plugins(self): - from archivebox.plugins.hooks import is_background_hook - - assert is_background_hook("on_Snapshot__50_custom__background.py") is True - @pytest.mark.django_db(transaction=True) class TestJSONLParsing: