Last active
August 18, 2017 09:48
-
-
Save allanlewis/ea3a556351a0dabdb1d8bc0b6b92cac0 to your computer and use it in GitHub Desktop.
A configuration for Ant to generate a report based on a JUnit XML file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project name="JUnit Reporter" basedir="." default="main"> | |
<mkdir dir="reports" /> | |
<target name="junit"> | |
<junitreport todir="./reports"> | |
<fileset dir="."> | |
<include name="junit.xml"/> | |
</fileset> | |
<report format="frames" todir="./reports/frames" /> | |
<report format="noframes" todir="./reports/noframes" /> | |
</junitreport> | |
</target> | |
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Replace me with a test results file from Jenkins, or from `py.test --junit.xml=junit.xml ...`. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment