foodsoft/.travis.yml

18 lines
562 B
YAML
Raw Normal View History

2013-07-24 13:21:52 +02:00
language: ruby
rvm:
2014-11-21 14:37:56 +01:00
- 2.1
2013-07-24 13:21:52 +02:00
services:
- redis-server
2013-12-16 23:11:39 +01:00
env: COVERALLS=1
2013-07-24 13:21:52 +02:00
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
2015-01-02 18:23:10 +01:00
bundler_args:
- "--without development --deployment --jobs=3 --retry=3"
2013-07-24 21:28:42 +02:00
before_script:
2013-07-24 13:21:52 +02:00
- "bundle exec rake foodsoft:setup:stock_config"
- "mysql -e 'create database foodsoft_test;'"
2013-07-24 21:40:36 +02:00
- 'printf "test:\n adapter: mysql2\n database: foodsoft_test\n username: travis\n encoding: utf8\n" >config/database.yml'
2013-07-24 21:57:17 +02:00
- 'bundle exec rake db:schema:load RAILS_ENV=test'
script: bundle exec rake rspec-rerun:spec