blob: 69981b069df6be6d02de0a5c62bbddf5003d0eaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
services:
- couchdb
notifications:
email: false
before_script:
- "test/setup_couch.sh"
- "mv test/config/couchdb.yml.admin config/couchdb.yml"
- "bundle exec rake couchrest:migrate_with_proxies"
- "bundle exec rake couchrest:migrate_with_proxies" # looks like this needs to run twice
- "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
|