Hi All,

I'm migrating my build from ant to Gradle and trying to get a plain-text report 
out of my tests. In ant I have a target like this:


    <target name="test" depends="deliver, cleantests">
        <junit printsummary="yes" maxmemory="1024m" haltonfailure="yes" 
dir="${apt}" timeout="1800000">
            <....SNIP.....>
            <formatter type="plain"/>
            <formatter type="xml"/>
            <....SNIP.....>
        </junit>
    </target>

Gradle is generating an xml report and an HTML report already. I've done some 
Google hunting and haven't been able to find any tips on how to do this.

Any suggestions?

Cheers,

Andy

Reply via email to