(config, start_path)
| 9 | |
| 10 | |
| 11 | def pytest_report_header(config, start_path): |
| 12 | env = ProxyTestEnv() |
| 13 | return "mod_proxy: [apache: {aversion}({prefix})]".format( |
| 14 | prefix=env.prefix, |
| 15 | aversion=env.get_httpd_version(), |
| 16 | ) |
| 17 | |
| 18 | |
| 19 | @pytest.fixture(scope="package") |
nothing calls this directly
no test coverage detected