Last active
May 2, 2016 22:37
-
-
Save svenmuennich/05f861cc5473abecd1e01a0b330d9628 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- An ant target for running only tests that are part of the goup 'custom', using also a faster test setup --> | |
<target name="custom-tests" depends="build-cache-dir, build-config, build-database, build-create-admin-account, build-install-lock-file, build-disable-firstrunwizard"> | |
<exec executable="${script.phpunit}" failonerror="true" dir="${test.dir.shopware}"> | |
<arg value="--log-junit=${log.dir}/junit.xml"/> | |
<arg value="--group=custom"/> | |
</exec> | |
</target> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment