From 5739095f8d9d2695abec5575907a11e269d44b21 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 12 Nov 2024 23:49:16 -0500 Subject: [PATCH] fix tests --- bbot/test/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bbot/test/conftest.py b/bbot/test/conftest.py index 345f0499bc..1396e6152f 100644 --- a/bbot/test/conftest.py +++ b/bbot/test/conftest.py @@ -102,11 +102,11 @@ def should_mock(request): def pytest_collection_modifyitems(config, items): # make sure all tests have the httpx_mock marker for item in items: - # if "httpx_mock" not in item.keywords: item.add_marker( pytest.mark.httpx_mock( should_mock=should_mock, assert_all_requests_were_expected=False, + assert_all_responses_were_requested=False, can_send_already_matched_responses=True, ) )