Changeset 44705 for trunk/tests/phpunit/build.xml
- Timestamp:
- 01/28/2019 05:20:06 PM (7 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/build.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/build.xml
r25165 r44705 1 1 <?xml version="1.0" encoding="utf-8"?> 2 2 <project name="WordPress Unit Tests" default="build" basedir="."> 3 <target name="clean">4 <delete dir="build" />5 </target>6 <target name="prepare">7 <mkdir dir="build/logs" />8 <mkdir dir="build/phpunitreport" />9 </target>10 <target name="phpunit">11 <exec command="phpunit" passthru="true"></exec>12 <phpunitreport infile="build/logs/junit.xml" format="frames" todir="build/phpunitreport" usesorttable="true" />13 </target>14 <target name="build" depends="clean,prepare,phpunit" />3 <target name="clean"> 4 <delete dir="build" /> 5 </target> 6 <target name="prepare"> 7 <mkdir dir="build/logs" /> 8 <mkdir dir="build/phpunitreport" /> 9 </target> 10 <target name="phpunit"> 11 <exec command="phpunit" passthru="true"></exec> 12 <phpunitreport infile="build/logs/junit.xml" format="frames" todir="build/phpunitreport" usesorttable="true" /> 13 </target> 14 <target name="build" depends="clean,prepare,phpunit" /> 15 15 </project>
Note: See TracChangeset
for help on using the changeset viewer.