1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-06 01:08:21 +01:00
fab-manager/scripts/run-tests.sh

8 lines
206 B
Bash
Executable File

#!/usr/bin/env bash
RAILS_ENV='test' bin/rails db:environment:set
RAILS_ENV='test' rake db:drop
RAILS_ENV='test' rake db:create
RAILS_ENV='test' rake db:migrate
RAILS_ENV='test' bundle exec rake test "$@"