My team is just getting started with X-Ray, and we are setting up our pipelines. However, while doing this I noticed that if I submit a Junit xml file to X-Ray via the REST api, it will create new tests for any test data that isn't already in the system.
Is there a way to have X-Ray ignore test results for tests that don't exist for the test execution? I don't want it constantly creating extra tests.
For example:
- (Jira/X-Ray Server) TestExecution MyExecution has test testA
- From client, I submit a Junit xml file containing results for testA and testB in the MyExecution TestExecution
- testB now exist on the server under MyExecution
I would like to be able to submit the Junit xml file without it creating extra tests.