Skip to content

Instantly share code, notes, and snippets.

@jakzal
Created June 18, 2012 23:02
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save jakzal/2951321 to your computer and use it in GitHub Desktop.
Save jakzal/2951321 to your computer and use it in GitHub Desktop.
Runs all Behat scenarios in a Symfony project on CI
#!/bin/sh
# ./bin/behat-ci.sh
project_dir=$(dirname $(readlink -f $0))"/.."
logs_path=${1:-"./build/logs/behat"}
reports_path=${2:-"./build/behat"}
cd $project_dir
logs_path=${logs_path##$(pwd)/}
reports_path=${reports_path##$(pwd)/}
for feature_path in `find src/ -path '*/Features'`; do
bundle=$(echo $feature_path | sed -e 's/^[^\/]\+\/\([^\/]\+\)\/Bundle\/\([^\/]\+\)\/.*/\1\2/');
reports_dir=$reports_path"/$bundle.html"
echo "Running suite for $bundle";
./bin/behat --format=progress,junit,html --out=,$logs_path,$reports_dir "@$bundle";
echo "<a href=\"$bundle.html\">$bundle</a><br />" >> $reports_path"/index.html"
done
cd -
@cordoval
Copy link

it fails for when there is a Knp\Bundle\KnpBundlesBundle folder

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment