blob: 90822f316c699b02239eecc782acfbbdd46e7ec7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
services:
- couchdb
notifications:
email: false
before_script:
- "test/setup_couch.sh"
- "mv test/config/couchdb.yml.admin config/couchdb.yml"
- "bundle exec rake RAILS_ENV=test couchrest:migrate_with_proxies"
- "mv test/config/couchdb.yml.user config/couchdb.yml"
after_script:
- "cat tmp/*.test*.log" # printing logs from the failed integration tests
bundler_args: --without development debug
|