(pytestconfig, httpserver)
| 34 | |
| 35 | @pytest.fixture(scope="function", autouse=True) |
| 36 | def set_httpserver_hostname(pytestconfig, httpserver): |
| 37 | # We need httpserver.url_for() to generate URLs pointing to the correct host |
| 38 | httpserver.host = pytestconfig.getoption("httpserver_host") |
| 39 | |
| 40 | |
| 41 | @pytest.fixture(scope="session", autouse=True) |
nothing calls this directly
no outgoing calls
no test coverage detected