Skip to content

Instantly share code, notes, and snippets.

@svenmuennich
Last active May 2, 2016 22:37
Show Gist options
  • Save svenmuennich/05f861cc5473abecd1e01a0b330d9628 to your computer and use it in GitHub Desktop.
Save svenmuennich/05f861cc5473abecd1e01a0b330d9628 to your computer and use it in GitHub Desktop.
<!-- 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