How to get more verbose messaging in automation test executions
I'm using Zephyr Scale Cloud to upload the results of my pytest testsuite to Zephyr (using the junitxml format). So far, this seems to be working fairly well and I'm able to get helpful error info on the failing tests. I'd like to capture the output of my passed tests and have it added to those test executions as well.
Right now, all the passing tests don't get any additional info at all beyond the fact that they passed while the failed tests get good info about their failures.
I have the info I want in my xml file. I ran pytest with the rpx flag and junit_logging=all option, so there is a good deal of information in that output file about the passed tests, but the endpoint: "https://api.zephyrscale.smartbear.com/v2/automations/executions/junit" seems to pretty much ignore everything that's not a failure message.
Is there a way to hit this endpoint so that I'll get more info on my passed tests as well, or perhaps a different way I can write to the xml output file and accomplish the same thing?