9 lines
140 B
Python
9 lines
140 B
Python
"""
|
|
Configure pytest
|
|
"""
|
|
|
|
|
|
def pytest_report_header(config):
|
|
"""Add header to report."""
|
|
return "python client -- requests library"
|