Hi Wayne, Thanks for the tips. I've gone through the surefire plugin's config documentation and the "useFile" option seems to control where the detailed results are written (default is in target/surefire-reports/<testclass> but if you set useFile=false, then the detailed results go to the console). I definitely do not want that. I simply want the progress information to be displayed for each individual test class as it is executed by the plugin.
After reading a little more and digging into surefire's Junit4RunListener class, it looks like the behavior I'm seeing is not controlled by surefire's run listener at all. So that probably means that it's a product of the default JUnit runner/listener classes. On Thu, Sep 24, 2015 at 11:58 AM, Wayne Fay <[email protected]> wrote: > There is probably some configuration available that will satisfy your > needs (e.g. useFile): > http://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html > > If not, you may need to just cat some files under > target/surefire-reports when your build is done. > > Also look here, it may be interesting for you: > http://maven.apache.org/surefire/maven-surefire-plugin/newerrorsummary.html > > Wayne > -- Phil Adams
