From dca2e7924ba5346eb78a3b7091d15b316e4e925a Mon Sep 17 00:00:00 2001 From: Jhon Honce Date: Wed, 2 Mar 2022 09:50:48 -0700 Subject: 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 --- test/apiv2/python/conftest.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/apiv2/python/conftest.py (limited to 'test/apiv2/python/conftest.py') diff --git a/test/apiv2/python/conftest.py b/test/apiv2/python/conftest.py new file mode 100644 index 000000000..54a267049 --- /dev/null +++ b/test/apiv2/python/conftest.py @@ -0,0 +1,8 @@ +""" +Configure pytest +""" + + +def pytest_report_header(config): + """Add header to report.""" + return "python client -- requests library" -- cgit v1.2.3-54-g00ecf