2013-02-07 13:43:07 -06:00
|
|
|
language: ruby
|
|
|
|
rvm:
|
2013-06-13 06:12:06 -05:00
|
|
|
- 2.0.0
|
2013-02-07 13:43:07 -06:00
|
|
|
before_script:
|
2013-05-24 22:25:03 -05:00
|
|
|
- cp config/database.yml.development-sample config/database.yml
|
2013-02-12 15:30:56 -06:00
|
|
|
- cp config/redis.yml.sample config/redis.yml
|
2013-02-07 13:43:07 -06:00
|
|
|
- psql -c 'create database discourse_test;' -U postgres
|
2013-02-07 14:03:44 -06:00
|
|
|
- rake db:migrate
|
2013-03-10 22:14:46 -05:00
|
|
|
- export RUBY_GC_MALLOC_LIMIT=50000000
|
2013-03-06 06:36:19 -06:00
|
|
|
bundler_args: --without development
|
2013-10-18 10:33:23 -05:00
|
|
|
script: 'bundle exec rspec && bundle exec rake qunit:test'
|
2013-02-07 13:43:07 -06:00
|
|
|
services:
|
2013-03-01 18:22:35 -06:00
|
|
|
- redis-server
|