Files
apache-http-server/test/conftest.py
Stefan Eissing 7b83bd03a9 * test: update of python test framework after integration with mod_md
test suite that should come here soonish. 



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1894599 13f79535-47bb-0310-9956-ffa450edef68
2021-10-28 12:50:02 +00:00

13 lines
287 B
Python

import sys
import os
sys.path.append(os.path.join(os.path.dirname(__file__), '.'))
from pyhttpd.env import HttpdTestEnv
def pytest_report_header(config, startdir):
env = HttpdTestEnv()
return f"[apache httpd: {env.get_httpd_version()}, mpm: {env.mpm_module}, {env.prefix}]"