Created
June 18, 2012 23:02
-
-
Save jakzal/2951321 to your computer and use it in GitHub Desktop.
Revisions
-
jakzal created this gist
Jun 18, 2012 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ #!/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 -