You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash -ex
|
|
|
|
export SCRIPT_DIR=$(cd `dirname $0` && pwd -P)
|
|
source $SCRIPT_DIR/functions
|
|
|
|
install_module
|
|
|
|
# run litmus tests
|
|
export RSPEC_DEBUG=true
|
|
$GEM_HOME/bin/bundle exec rake litmus:acceptance:localhost
|