Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build.xml - github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ac8dc0144fe41ecb71f7085135ceac65c1bf5ce8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<project name="owncloud-mail" basedir="." default="test">

	<property file="build.properties"/>

	<!-- 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>

		<!--<exec executable="phpunit" failonerror="true">-->
			<!--<arg value="-c" />-->
			<!--<arg path="${build.src.dir}/app/"/>-->
			<!--<arg value="- -log-junit" />-->
			<!--<arg path="${report.dir}/phpunit.xml"/>-->
			<!--<arg value="- -coverage-clover" />-->
			<!--<arg path=" ${report.dir}/clover.xml"/>-->
		<!--</exec>-->
	</target>

</project>