2014-04-09 17:04:03 +02:00
|
|
|
language: ruby
|
|
|
|
|
rvm:
|
2014-04-24 22:02:50 +02:00
|
|
|
- 2.1.1
|
2014-04-09 17:04:03 +02:00
|
|
|
branches:
|
|
|
|
|
only:
|
|
|
|
|
- master
|
|
|
|
|
notifications:
|
|
|
|
|
email:
|
|
|
|
|
on_success: change
|
|
|
|
|
on_failure: change
|
2014-04-10 11:59:24 +02:00
|
|
|
before_install:
|
|
|
|
|
- export DISPLAY=:99.0
|
|
|
|
|
- sh -e /etc/init.d/xvfb start
|
|
|
|
|
before_script:
|
|
|
|
|
- cp config/database.yml.example config/database.yml
|
|
|
|
|
- cp config/config.yml.example config/config.yml
|
2014-05-12 18:32:26 +02:00
|
|
|
- cp config/secrets.yml.example config/secrets.yml
|
2014-04-09 18:21:32 +02:00
|
|
|
- RAILS_ENV=test bundle exec rake db:migrate --trace
|
2014-04-10 11:59:24 +02:00
|
|
|
script:
|
2014-04-24 22:02:50 +02:00
|
|
|
- bundle exec rspec --color --format documentation
|