2014-10-23 18:50:59 +03:00
|
|
|
<project name="owncloud-documents" basedir="." default="test">
|
2014-05-12 17:50:16 +02:00
|
|
|
|
|
|
|
<!-- test - Tests if the code syntax is correct and executes phpunit tests -->
|
|
|
|
<target name="test">
|
|
|
|
<apply executable="php" failonerror="true">
|
|
|
|
<arg value="-l" />
|
|
|
|
<fileset dir=".">
|
|
|
|
<include name="**/*.php" />
|
|
|
|
<exclude name="**/l10n/**" />
|
|
|
|
</fileset>
|
|
|
|
</apply>
|
|
|
|
|
|
|
|
</target>
|
|
|
|
|
|
|
|
</project>
|