I am executing a test pack through command line using script task, I need to update/ show its status in bamboo as, for e.g. :
Presently my test pack does not create any report which can be parsed using any default parser tasks such as JUnit Parser, TESTNG Parser etc.
Is there a way by which a build job can pick the status from execution log/ std out , as I update the execution log with the execution status after end of each test case?
Iulius Hutuleac has thankfully generalized the approach Alexey suggested in his answer (+1) and implemented a Generic Test Results Parser for Bamboo based on the Bamboo Test Collection and Reporting SPI - the free add-on offers Simple file parsing and test case handling for generic test result formats:
Just select the files, create a regular expression matching lines that should be treated as failed test cases and lines that should be treated as passed test cases.
Hello Nikhil,
Bamboo doesn't have built-in support for your scenario. On of the way to implement it is to store result of you script command to some file and then create Bamboo plugin which can parse this file and generate test report as JUnit Parser plugin does.
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.