Skip to content
Snippets Groups Projects

Test all the things!

Merged Andrew Hoffmann requested to merge ahoffmann/uw-php-security:preauth-test into master
3 files
+ 10
19
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 2
16
@@ -33,22 +33,8 @@
</target>
<!-- Runs PHPUnit -->
<target name="test" depends="get-phpunit">
<exec command="php phpunit.phar" passthru="true" checkreturn="true"/>
</target>
<!-- Downloads PHPUnit -->
<target name="get-phpunit">
<if>
<not>
<available file="phpunit.phar"/>
</not>
<then>
<httpget dir="${project.basedir}"
url="https://phar.phpunit.de/phpunit.phar"
followRedirects="true"/>
</then>
</if>
<target name="test">
<exec command="php vendor/bin/phpunit" passthru="true" checkreturn="true"/>
</target>
<target name="release">
Loading