blob: 2681951e21490aed5475b472a564cb485b87a55b (
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/config/travis/ruby-version .ruby-version"
- "test/config/travis/setup_couch.sh"
- "mv test/config/travis/couchdb.admin.yml config/couchdb.admin.yml"
- "mv test/config/travis/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
|