2013-07-24 13:21:52 +02:00
|
|
|
language: ruby
|
2015-04-24 00:53:22 +02:00
|
|
|
sudo: false
|
2013-07-24 13:21:52 +02:00
|
|
|
rvm:
|
2014-11-21 14:37:56 +01:00
|
|
|
- 2.1
|
2013-07-24 13:21:52 +02:00
|
|
|
services:
|
|
|
|
- redis-server
|
2016-02-23 23:55:54 +01:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- metacity
|
2013-12-16 23:11:39 +01:00
|
|
|
env: COVERALLS=1
|
2013-07-24 13:21:52 +02:00
|
|
|
before_install:
|
2016-02-23 23:55:54 +01:00
|
|
|
- export DISPLAY=:99.0
|
|
|
|
- sh -e /etc/init.d/xvfb start
|
|
|
|
- sleep 3 && metacity --sm-disable --replace 2> metacity.err &
|
2015-01-14 23:00:12 +01:00
|
|
|
cache: bundler
|
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"
|
2013-07-24 21:47:27 +02:00
|
|
|
- "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'
|
2013-11-21 00:29:24 +01:00
|
|
|
script: bundle exec rake rspec-rerun:spec
|