Sha256: 5980c54fbd1ae11ad371791a7aa6a2b3a761542bc7fbc19a17c226b406a576f3

Contents?: true

Size: 818 Bytes

Versions: 2

Compression:

Stored size: 818 Bytes

Contents

language: ruby
rvm:
  - 1.9.3
  - 2.0.0
  - 2.1.1

env:
  - DB=mysql
  - DB=postgres
  - DB=sqlite

gemfile: Gemfile.ci

bundler_args: --path=vendor/bundle --without heroku

before_install:
  - "export DISPLAY=:99.0"
  - "sh -e /etc/init.d/xvfb start"

before_script:
  - sh -c "cp config/database.$DB.yml config/database.yml"
  - sh -c "if [ \"$DB\" = 'postgres' ]; then psql -c 'create database fat_free_crm_test;' -U postgres; fi"
  - sh -c "if [ \"$DB\" = 'mysql' ]; then mysql -e 'create database fat_free_crm_test;'; fi"
  - sh -c "RAILS_ENV=test bundle exec rake db:schema:load"

# Run specs
script: "RAILS_ENV=test bundle exec rake"

# To stop Travis from running tests for a new commit,
# add the following to your commit message: [ci skip]
# You should add this when you edit documentation or comments, etc.

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fat_free_crm-0.13.4 .travis.yml
fat_free_crm-0.13.3 .travis.yml