aboutsummaryrefslogtreecommitdiffhomepage
path: root/build.xml
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-04-01 21:53:48 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-04-01 21:53:48 +0200
commitd6fa2f70ac3c798b28ce33c6c143f45c09c74062 (patch)
tree40769c29279d189dfe0dbb8aa513122f9172ebde /build.xml
parent1a93ee423b072ec3bcb0c437cbf9b488bdea245c (diff)
parent276a1e9d3fb7e83569d16bcb37a67607d4ace8be (diff)
downloadwallabag-d6fa2f70ac3c798b28ce33c6c143f45c09c74062.tar.gz
wallabag-d6fa2f70ac3c798b28ce33c6c143f45c09c74062.tar.zst
wallabag-d6fa2f70ac3c798b28ce33c6c143f45c09c74062.zip
Merge pull request #1165 from wallabag/v2-prefix-db
Prefix table
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index cd2dfa3c..30ed2fa1 100644
--- a/build.xml
+++ b/build.xml
@@ -40,4 +40,11 @@
40 <arg value="--env=test"/> 40 <arg value="--env=test"/>
41 </exec> 41 </exec>
42 </target> 42 </target>
43
44 <target name="phpunit" description="Run unit tests with PHPUnit + HTML Coverage">
45 <exec executable="phpunit" failonerror="true">
46 <arg value="--coverage-html"/>
47 <arg value="build/coverage"/>
48 </exec>
49 </target>
43</project> 50</project>