We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b55c354 commit 3d46150Copy full SHA for 3d46150
build.xml
@@ -41,12 +41,12 @@
41
42
<target name="behat" description="BDD Acceptance tests with Behat">
43
<!-- First we do it so that we get jUnit XML for bamboo-->
44
- <exec dir="${basedir}" executable="behat">
+ <exec dir="${basedir}" executable="vendor/bin/behat">
45
<arg line="-f junit --out ${basedir}/build/logs/tests/" />
46
</exec>
47
<!-- Then we run it again, only this time we want output
48
for in the logs and an exit code so Bamboo can fail the build if necessary -->
49
- <exec dir="${basedir}" executable="behat" failonerror="true" />
+ <exec dir="${basedir}" executable="vendor/bin/behat" failonerror="true" />
50
51
</target>
52
0 commit comments