discourse/.travis.yml
Thomas McDonald b66ee10c18 Don't install development group gems in Travis
Will speed up set up time slightly
2013-03-06 12:36:19 +00:00

13 lines
372 B
YAML

language: ruby
rvm:
- 1.9.3
before_script:
- cp config/database.yml.sample config/database.yml
- cp config/redis.yml.sample config/redis.yml
- psql -c 'create database discourse_test;' -U postgres
- rake db:migrate
bundler_args: --without development
script: 'rake jshint && rake spec && bundle exec guard-jasmine --server-timeout=60'
services:
- redis-server