#1444 added a linter-friendly way to deal with locally defined fixtures, but it's rather cumbersome. I'd like to see the fixture decorator ignore any leading underscore of the wrapped function. Then usage would be: ``` @pytest.fixture def _my_fixture(): ... def test_foo(my_fixture): ... ```