We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I always use autospec=True in when patching objects. I think this helps to uncover bad mock calls.
autospec=True
Perhaps it would be nice to be able to set this as a default value. E.g.:
def pytest_configure(mocker_config): mocker_config.default_autospec = True