Replies: 1 comment 1 reply
-
There are tools to merge or combine junitxml files Personally i completely avoid junitxml |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I just came across this SO post over here https://stackoverflow.com/questions/60834564/how-to-append-different-pytest-tests-to-the-same-junit-xml-file-instead-of-overr, and it asked an interesting question if it was possible to write to the same junit file path and have pytest do an append to xml rather than overwrite. I commented on the post about how we have the
-log-file-mode=a
could there be room likewise for a-junitxml-file-mode=a
that perhaps grew the<testsuites>
element<testsuite>
by<testsuite>
each invocation?I wonder if we don't see this more because many junit parsers like in bamboo and jenkins would mask the testsuite variation perhaps. I'm curious how they would be have in fact with a file containing a multi element
<testsuites>
entry.Beta Was this translation helpful? Give feedback.
All reactions