blob: 3bd8ba1fce35e74d70d8917df1b4ce744ad4757f (
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 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
|