You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To better evaluate the CI (Jenkins) results, it would be great to have the collected logging information available in the results.xml.
@pytest.mark.parametrize("count", range(5))deftest_logging_to_xml(count):
"""Write report to XML -> warnings should be there too"""logging.info("This is just information")
logging.warning("Something went sideways %i", count)
assertFalse
I'd would like to see the captured log lines
INFO root:tests_helper.py:52 This is just information
WARNING root:tests_helper.py:53 Something went sideways 4
in my results.xml file.
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
This is the inverse of #2648.
To better evaluate the CI (Jenkins) results, it would be great to have the collected logging information available in the
results.xml
.I'd would like to see the captured log lines
in my
results.xml
file.The text was updated successfully, but these errors were encountered: