Sha256: d08078b35887af4cf85331bea1c770b6e8c51888d194dc8ffb05606ccba0b4b6

Contents?: true

Size: 463 Bytes

Versions: 1

Compression:

Stored size: 463 Bytes

Contents

#!/bin/bash
source ~/.bashrc

git remote prune origin
git gc

# delete old coverage reports
rm -rf coverage
rm -f features/reports/*.xml
rm -f features/reports/screenshots/*.png

rvm use 1.9.2
bundle install --path vendor/bundle
bundle exec smart_asset

# start cucumber on Xvfb
export DISPLAY=:91
script/xvfb start

bundle exec cucumber features --format Cucumber::Formatter::Junit --out features/reports --format pretty
RESULT=$?

script/xvfb stop
exit $RESULT

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rwiki-0.2.5 script/build_cucumber