From 9aebcae5ca0f231e33672b0f1b2620dbb7312789 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 4 Nov 2024 12:04:59 -0500 Subject: [PATCH] don't blanket-mock for basic module tests --- bbot/test/test_step_1/test_modules_basic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bbot/test/test_step_1/test_modules_basic.py b/bbot/test/test_step_1/test_modules_basic.py index 3051f8de1e..283559e707 100644 --- a/bbot/test/test_step_1/test_modules_basic.py +++ b/bbot/test/test_step_1/test_modules_basic.py @@ -10,8 +10,8 @@ @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"}) + # 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