summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 0911277a1dc88fffd0f6b625d9b5eef4e8655fd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
before_install:
  - "echo '--colour' > ~/.rspec"
  - "echo 'gem: --no-document' > ~/.gemrc"
  - export DISPLAY=:99.0
  - sh -e /etc/init.d/xvfb start
before_script:
  - cp .env.example .env
  - cp config/database.yml.example config/database.yml

  - psql -c 'create database "urkel_test";' -U postgres

branches:
  only:
    - master
cache:
  - bundler
language:
  - ruby
notifications:
  email:
    - false
rvm:
  - 2.1.4
addons:
  postgresql: "9.3"