Move all python tests to pytest

* Add configuration to add report header for python client used in tests
* Move report headers into the individual test runners vs runner.sh

Signed-off-by: Jhon Honce <jhonce@redhat.com>
This commit is contained in:
Jhon Honce
2022-03-02 09:50:48 -07:00
parent ed59b89a43
commit dca2e7924b
7 changed files with 54 additions and 27 deletions

View File

@ -0,0 +1,8 @@
"""
Configure pytest
"""
def pytest_report_header(config):
"""Add header to report."""
return "python client -- requests library"