useless pytest.mark.usefixtures without parameters
Bad code:
import pytest
@pytest.mark.usefixtures()
def test_something():
...
@pytest.mark.usefixtures
def test_something_else():
...
Good code:
import pytest
@pytest.mark.usefixtures('a')
def test_something():
...
- such mark has no effect and is unnecessary