mirror of
https://github.com/apache/httpd.git
synced 2025-08-01 16:41:19 +00:00

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
13 lines
287 B
Python
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}]"
|
|
|
|
|