pytest fixtures Redefining name from outer scope [pylint]
The pytest docs for @pytest.fixture say this: If a fixture is used in the same module in which it is defined, the function name of the fixture will be shadowed by the function arg that requests the fixture; one way to resolve this is to name the decorated function fixture_<fixturename> and then use @pytest.fixture(name=”<fixturename>”). So … Read more