I have a Cypress test suite that creates an xml report upon completion. I then import those test results using the /api/v2/import/execution/junit endpoint. This is functioning, but the resulting test execution will have a summary like "Execution results [1725561773655]". What does this code correspond to? And is there a way I can define the summary automatically?
This is all happening in a Gitlab CI. Best case scenario is that I could include a Gitlab predefined variable in the Test Execution summary so that I could trace the Test Execution back to the merge request it was testing.
Hi @Pratt, Trenton - welcome to the community,
unfortunately it‘s not possible directly within the same call.
I managed to do a similar thing in a github action by creating a test exdcution issue via the native jira rest api and saving the key in a variable right before importing the cypress test results. I could then use the variable within the import call.
Let me know if this is helpful or if you have any further questions.
Best
Stefan
Thanks for the help!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.