Phing > tests > do not verify if the "tests" directory exists

This commit is contained in:
Meritoo
2018-05-28 17:05:12 +02:00
parent c5b42017d2
commit 7382bce842
2 changed files with 0 additions and 9 deletions

View File

@@ -213,14 +213,6 @@
<!-- Unit tests -->
<target name="test:phpunit" description="Executes PHPUnit tests">
<if>
<not>
<available file="${dir.data.tests}" type="dir" property="dir.data.tests.available" />
</not>
<then>
<mkdir dir="${dir.data.tests}" />
</then>
</if>
<echo msg="Running unit tests..." />
<exec command="${phpUnit.path} --verbose --no-coverage --configuration ${project.basedir}/phpunit.xml.dist"
passthru="true"/>