PyTest - Test Organization
Consider this
What is the effect of the
conftest.py fixture:import pytest
@pytest.fixture(scope="module")
def config():
return {"url": "http://test"}What is the effect of the
scope="module" parameter?