fixture {name} without value is injected as parameter, use @pytest.mark.usefixtures instead
Bad code:
def test_foo(_patch_something):
...
Good code:
import pytest
@pytest.mark.usefixtures('_patch_something')
def test_foo():
...
- to avoid unused parameters in test functions