Forum Discussion
Thanks for the reply. However I am trying to upload results from another CI/CD tool, and it is only presented in CSV. Is the only available format XML for JUnit 5? Or is there another endpoint that supports CSV?
Unfortunately, there is no endpoint supporting CSV.
You can use the API endpoint "POST /testexecutions" to update the status every time.
Otherwise, we support Cucumber JSON result files through an endpoint similar to the Junit endpoint.
If I may, what is your pipeline setup?
- jvondam4 years agoNew Contributor
Ok, that endpoint is useful to know. I am using GoCD to run tests. However it is a custom python script that generates the CSV file. It won't be too difficult to migrate that script to generate XML instead, which is likely what I will do. Thank you for the help!