blob: fbc4e069f7c70b275a4b84a6b3b92b5b39afa72a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
sudo: false
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
|