summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 4e7aad0b8c84c499fb4e6d8b06d362e141184c48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
services:
  - couchdb
notifications:
  email: false
before_install:
  - "gem install bundler --version 1.11.2"
before_script:
  - "rm .ruby-version"
  - "mv test/travis/ruby-version .ruby-version"
  - "test/travis/setup_couch.sh"
  - "mv test/config/couchdb.admin.yml config/couchdb.admin.yml"
  - "mv test/config/couchdb.yml config/couchdb.yml"
  - "bundle exec rake RAILS_ENV=test db:rotate"
  - "bundle exec rake RAILS_ENV=test db:migrate"
after_script:
  - "cat tmp/*.test*.log" # printing logs from the failed integration tests
bundler_args: --without development debug