foodsoft/.travis.yml

27 lines
777 B
YAML
Raw Normal View History

2013-07-24 13:21:52 +02:00
language: ruby
sudo: false
rvm:
2014-11-21 14:37:56 +01:00
- 2.1
2013-07-24 13:21:52 +02:00
services:
- mysql
2013-07-24 13:21:52 +02:00
- redis-server
addons:
apt:
packages:
- libmagic-dev
- metacity
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-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"
- "mysql -e 'create database foodsoft_test default character set utf8 default collate utf8_general_ci;'"
- "mysql -e 'grant all on foodsoft_test.* to travis;'"
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