database_cleaner/.travis.yml

14 lines
334 B
YAML
Raw Normal View History

2012-07-08 10:18:35 -04:00
language: ruby
rvm:
2012-12-03 20:20:28 -05:00
- 1.9.3
2012-08-06 01:10:01 -04:00
# TODO: make this work with the regular rake command
script: "bundle exec rake spec"
2012-07-08 10:18:35 -04:00
gemfile:
- Gemfile
before_script:
2012-08-06 01:22:39 -04:00
- mysql -e 'create database database_cleaner_test;'
- psql -c 'create database database_cleaner_test;' -U postgres
- cp db/sample.config.yml db/config.yml
2012-12-03 19:12:48 -05:00
services:
2012-12-03 20:20:28 -05:00
- mongodb