configuration for fixture '{name}' specified via positional args, use kwargs
Bad code:
import pytest
@pytest.fixture('module')
def my_fixture():
...
Good code:
import pytest
@pytest.fixture(scope='module')
def my_fixture():
...
- to make parameters meaning more obvious
- to enforce consistency between all fixtures in a codebase