From 9a7614dde4c220632756f2e0ef0f474e8b6f1a9d Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 4 Nov 2024 12:05:26 -0500 Subject: [PATCH] don't blanket-mock for basic module tests --- bbot/test/test_step_1/test_modules_basic.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/bbot/test/test_step_1/test_modules_basic.py b/bbot/test/test_step_1/test_modules_basic.py index 283559e707..4212340695 100644 --- a/bbot/test/test_step_1/test_modules_basic.py +++ b/bbot/test/test_step_1/test_modules_basic.py @@ -10,9 +10,6 @@ @pytest.mark.asyncio async def test_modules_basic_checks(events, httpx_mock): - # for http_method in ("GET", "CONNECT", "HEAD", "POST", "PUT", "TRACE", "DEBUG", "PATCH", "DELETE", "OPTIONS"): - # httpx_mock.add_response(method=http_method, url=re.compile(r".*"), json={"test": "test"}) - from bbot.scanner import Scanner scan = Scanner(config={"omit_event_types": ["URL_UNVERIFIED"]})