Skip to content

Instantly share code, notes, and snippets.

@ecentinela
Forked from robo47/behat-jenkins.txt
Created March 17, 2012 09:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ecentinela/2057046 to your computer and use it in GitHub Desktop.
Save ecentinela/2057046 to your computer and use it in GitHub Desktop.
Behat, Symfony2, Jenkins
Ant-Task which runs behat:
<?xml version="1.0" encoding="UTF-8"?>
<project name="Foo" default="build" basedir=".">
....
<target name="behat">
<exec dir="${basedir}/" executable="php" failonerror="true">
<arg line="app/console -e=test behat &quot;${basedir}/src/My/FooBundle/Features/&quot; -f junit --out &quot;${basedir}/build/logs/behat&quot;" />
</exec>
</target>
....
</project>
Configuration on Jenkins (Publish JUnit test results report)
build/logs/behat/*.xml
http://www.ld-host.de/uploads/images/ac7ea0419248c5dba3c943f25f46d8d7.png
After Running you can find Stats under your last build -> Test Results -> <root>
There will be a list of all Features and after Clicking on each feature you see the Scenarios and how long they took.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment