diff --git a/bbot/test/conftest.py b/bbot/test/conftest.py index 345f0499b..1396e6152 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, ) )