-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
47 lines (41 loc) · 1.66 KB
/
build.xml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8"?>
<project name="InstaGet" default="unit_tests">
<!-- ============================================ -->
<!-- Unit Tests -->
<!-- ============================================ -->
<target name="unit_tests">
<exec
command="${project.basedir}/${bin-dir}/phpunit --configuration unit.xml"
logoutput="true"
passthru="true"
checkreturn="true"
/>
</target>
<!-- ============================================ -->
<!-- Integration Tests -->
<!-- ============================================ -->
<target name="integration_tests">
<exec
command="${project.basedir}/${bin-dir}/phpunit --configuration integration.xml"
logoutput="true"
passthru="true"
checkreturn="true"
/>
</target>
<!-- ============================================ -->
<!-- Smoke Tests -->
<!-- ============================================ -->
<target name="smoke_tests">
<exec
command="${project.basedir}/${bin-dir}/phpunit --configuration smoke.xml"
logoutput="true"
passthru="true"
checkreturn="true"
/>
</target>
<!-- ============================================ -->
<!-- Properties -->
<!-- ============================================ -->
<property name="php-exec" value="php" />
<property name="bin-dir" value="/vendor/bin/" />
</project>