blob: ab5f78b4cf8340cfaf62e8130f03a9ae500ffa62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
services:
- couchdb
notifications:
email: false
before_script:
- "config/ci/travis/setup_couch.sh"
- "mv config/ci/travis/couchdb.admin.yml config/couchdb.admin.yml"
- "mv config/ci/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
|