blob: 240fac83a17bc21fa2f0a6b1949042c12cd0f6e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
language: ruby
rvm:
- 2.2.0
cache: bundler
addons:
postgresql: '9.3'
sudo: false
before_script:
- cp config/database.yml.travis config/database.yml
- cp .env.example .env
- psql -c 'create database cakeside_test;' -U postgres
script:
- bundle exec rake db:schema:load
- bundle exec rake db:test:prepare
- bundle exec rake spec
- bundle exec rake teaspoon
|