Is it possible to have testbox use the mintext rep...
# testing
b
Is it possible to have testbox use the mintext reporter but also write junit XML to a file? I've tried
reporter=mintext outputFile=/path/to/file.xml outputFormats=junit
but it doesn't write the file. I'm using this in GitLab CI so I want to see the mintext results when viewing the pipeline, but GitLab also wants junit XML for one if its features to show when tests started failing.
I also tried
reporter=mintext outputFile=/path/tofile.xml
but it writes the mintext as you would expect.
I understand this is probably like ice skating uphill
j
I think that only works if the reporter=json. This is according to the command
testbox run help
| string outputFormats = "" (A list of output reporter to produce using the runner's JSON results only. Available formats are: json,xml,junit,antjunit,simple,dot,doc,min,mintext,doc,text,tap,codexwiki)
z