forked from sanchobbdo/api-auth-client-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
21 lines (16 loc) · 716 Bytes
/
build.xml
File metadata and controls
21 lines (16 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<project name="Phing" default="test">
<property file="phing/build.properties" override="true" />
<property name="dir.imports" value="${project.basedir}/phing/imports" />
<import file="${dir.imports}/dependencies.xml" />
<target name="test" description="Run unit tests." depends="test-init">
<trycatch>
<try>
<exec passthru="true" command="vendor/bin/phpunit" checkReturn="true" />
</try>
</trycatch>
</target>
<target name="test-init" depends="install-dependencies" description="Initialize test dependencies.">
<copy file="phpunit.xml.dist" tofile="phpunit.xml" />
</target>
</project>